My part is moving in front of my character, how would I stop that. The code:
local Position game.Players.PlayerAdded:Connect(function(player) player.CharacterAdded:Connect(function(character) script.Parent.BodyPosition.MaxForce = Vector3.new(math.huge, math.huge, math.huge) script.Parent.BodyGyro.MaxTorque = Vector3.new(math.huge, math.huge, math.huge) while wait() do Position = Vector3.new(character.LowerTorso.Position.X - 3, character.Head.Position.Y, character.LowerTorso.Position.Z) script.Parent.BodyPosition.Position = Position script.Parent.BodyGyro.CFrame = character.LowerTorso.CFrame end end) end)