Advertisement
pz_java

Godspeed

Oct 15th, 2017
301
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1.  
  2. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 100000
  3. game.Players.LocalPlayer.Character.Parent = game.Workspace.CurrentCamera
  4. order = -1
  5. game:GetService("RunService").RenderStepped:connect(function()
  6. order = order+1
  7. if order >= 0 and order < 2 then
  8. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame:toWorldSpace(CFrame.new(Vector3.new(4.5,0,0)))
  9. end
  10. if order > 2 and order < 4 then
  11. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame:toWorldSpace(CFrame.new(Vector3.new(-4.5,0,0)))
  12. elseif order >= 6 then
  13. order = 0
  14. end
  15.  
  16.  
  17.  
  18.  
  19.  
  20. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement