I need to make the black balls stay behind my back even when I turn around
Here is a video robloxapp-20201209-1821432.wmv (1.6 MB)
I have no idea how to do this so please help.
This is the script I currently have
game.Players.PlayerAdded:Connect(function(p)
p.CharacterAdded:Connect(function(char)
local followingBrick = script.parent.Parent:Clone()
followingBrick.Parent = game.Workspace
followingBrick.Name = “Following:”…p.Name
followingBrick.a.Anchored = false
followingBrick.a.CanCollide = false
local bp = Instance.new(“BodyPosition”)
bp.Parent = followingBrick.a
while wait() do
bp.Position = char:FindFirstChild("Head").Position + Vector3.new(0,-2,5)
end
end)
end)