Using a bodyposition or something might make it smoother but for now I just used CFrame:
local player = game.Players.LocalPlayer
repeat wait() until player.Character
local character = player.Character
local torso = character:FindFirstChild("Torso")
local num = 0
while wait() do
num = num + 1
torso.CFrame = CFrame.new(Vector3.new(0, num, 0))
end
|