of     1   

Mouse_Potatoe
#183909835Thursday, February 18, 2016 11:37 PM GMT

I am trying to make a person fly up. And I don't know if I use a Vector3, CFrame or something to edit the value of BodyThrust Force. I need help! 49 20 6B 6E 6F 77 20 43 2B 2B
KLGA
#183909929Thursday, February 18, 2016 11:38 PM GMT

The Y axis moves things up and down. (Y is the one in the middle)
cofunction
#183910046Thursday, February 18, 2016 11:40 PM GMT

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

    of     1