local function createBalls(color, assetid) local ballleft = Instance.new("Part") local ballright = Instance.new("Part") ballleft.Parent, ballright.Parent = game.Players.LocalPlayer.Character, game.Players.LocalPlayer.Character ballleft.Size, ballright.Size = Vector3.new(2, 2, 2), Vector3.new(2, 2, 2) ballleft.Color, ballright.Color = color, color ballleft.Anchored, ballright.Anchored = true, true ballleft.CanCollide, ballright.CanCollide = false, false ballleft.Shape, ballright.Shape = Enum.PartType.Ball, Enum.PartType.Ball ballleft.Material, ballright.Material = Enum.Material.Plastic, Enum.Material.Plastic ballleft.TopSurface, ballright.TopSurface = Enum.SurfaceType.Smooth, Enum.SurfaceType.Smooth ballleft.BottomSurface, ballright.BottomSurface = Enum.SurfaceType.Smooth, Enum.SurfaceType.Smooth ballleft.LeftSurface, ballright.LeftSurface = Enum.SurfaceType.Smooth, Enum.SurfaceType.Smooth ballleft.RightSurface, ballright.RightSurface = Enum.SurfaceType.Smooth, Enum.SurfaceType.Smooth ballleft.FrontSurface, ballright.FrontSurface = Enum.SurfaceType.Smooth, Enum.SurfaceType.Smooth ballleft.BackSurface, ballright.BackSurface = Enum.SurfaceType.Smooth, Enum.SurfaceType.Smooth if assetid then local decalLeft, decalRight = Instance.new("Decal"), Instance.new("Decal") decalLeft.Texture, decalRight.Texture = assetid, assetid decalLeft.Face = Enum.NormalId.Front decalRight.Face = Enum.NormalId.Front decalLeft.Parent, decalRight.Parent = ballleft, ballright local decalLeft2, decalRight2 = Instance.new("Decal"), Instance.new("Decal") decalLeft2.Texture, decalRight2.Texture = assetid, assetid decalLeft2.Face = Enum.NormalId.Back decalRight2.Face = Enum.NormalId.Back decalLeft2.Parent, decalRight2.Parent = ballleft, ballright local decalLeft3, decalRight3 = Instance.new("Decal"), Instance.new("Decal") decalLeft3.Texture, decalRight3.Texture = assetid, assetid decalLeft3.Face = Enum.NormalId.Left decalRight3.Face = Enum.NormalId.Left decalLeft3.Parent, decalRight3.Parent = ballleft, ballright local decalLeft4, decalRight4 = Instance.new("Decal"), Instance.new("Decal") decalLeft4.Texture, decalRight4.Texture = assetid, assetid decalLeft4.Face = Enum.NormalId.Right decalRight4.Face = Enum.NormalId.Right decalLeft4.Parent, decalRight4.Parent = ballleft, ballright local decalLeft5, decalRight5 = Instance.new("Decal"), Instance.new("Decal") decalLeft5.Texture, decalRight5.Texture = assetid, assetid decalLeft5.Face = Enum.NormalId.Top decalRight5.Face = Enum.NormalId.Top decalLeft5.Parent, decalRight5.Parent = ballleft, ballright local decalLeft6, decalRight6 = Instance.new("Decal"), Instance.new("Decal") decalLeft6.Texture, decalRight6.Texture = assetid, assetid decalLeft6.Face = Enum.NormalId.Bottom decalRight6.Face = Enum.NormalId.Bottom decalLeft6.Parent, decalRight6.Parent = ballleft, ballright end game:GetService("RunService").Heartbeat:Connect(function() local character = game.Players.LocalPlayer.Character if character and character:FindFirstChild("UpperTorso") then local rootPart = character.UpperTorso ballleft.CFrame = rootPart.CFrame * CFrame.new(-0.55, -1.5, -1) ballright.CFrame = rootPart.CFrame * CFrame.new(0.55, -1.5, -1) end end) end local function niggaballs() createBalls(Color3.fromRGB(124, 92, 70), nil) end local function balls() createBalls(Color3.fromRGB(234, 184, 146), nil) end local function catballs() createBalls(Color3.fromRGB(255, 255, 255), "http://www.roblox.com/asset/?id=14053463184") end local function customballs(color: Color3, assetid: string) createBalls(color, assetid) end local function womanballs() createBalls(Color3.fromRGB(255, 255, 255), "http://www.roblox.com/asset/?id=10951187355") end local function furryballs() createBalls(Color3.fromRGB(255, 255, 255), "http://www.roblox.com/asset/?id=14469479039") end local function sigmaballs() createBalls(Color3.fromRGB(255, 255, 255), "http://www.roblox.com/asset/?id=15855918337") end -- niggaballs() -- balls() -- catballs() -- customballs(Color3.fromRGB(255, 255, 255), "http://www.roblox.com/asset/?id=00000000000") -- womanballs() -- furryballs() -- sigmaballs()