How do I make the balls stay behind me even when I turn around?

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)

1 Like

Can you format your code correctly.

The § is wrong.

game.Players.PlayerAdded:Connect(function(p)
    p.CharacterAdded:Connect(function(char)
        — do stuffs here.
    end)
end)

You could try Searching ‘pets following’ in the Search bar up top. I found a few forum posts about this subject there.

The § was an accident Idk why it did that