anphu04

ROBLOX BOOGA BOOGA SPEED HACK

Jun 14th, 2018
3,037
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.40 KB | None | 0 0
  1. -- By anphu04 (40uhpna), 6/15/2018 --
  2. -- PRESS G TO TURN OFF/ON THE SCRIPT! --
  3. -- 26/6/2018: changed stuff --
  4. -- 27/6/2018: changed even more stuff --
  5.  
  6. local plr = game:GetService("Players").LocalPlayer
  7. local char = plr.Character
  8. local hum = char.Humanoid
  9. local cam = workspace.CurrentCamera
  10. local serv = game:GetService("UserInputService")
  11. local mouse = plr:GetMouse()
  12.  
  13. --hum.JumpPower = 150
  14.  
  15. running = false
  16. enabled = nil
  17. died = false
  18.  
  19.  
  20. if not workspace:FindFirstChild('speed hack enabled') then
  21. enabled = Instance.new('BoolValue')
  22. enabled.Name = 'speed hack enabled'
  23. enabled.Value = true
  24. enabled.Parent = workspace
  25. else
  26. enabled = workspace['speed hack enabled']
  27. end
  28.  
  29. ------------------------------------------------------------------------------------------------------------------------------------------------
  30.  
  31.  
  32. keydown = mouse.KeyDown:Connect(function(key)
  33. if key == string.lower('w') then
  34. running = true
  35. end
  36. end)
  37.  
  38. keyup = mouse.KeyUp:Connect(function(key)
  39. if key == string.lower('w') then
  40. running = false
  41. end
  42. end)
  43.  
  44. enabling = mouse.KeyDown:Connect(function(key)
  45. if key == string.lower('g') then
  46. if enabled.Value == true then
  47. enabled.Value = false
  48. else
  49. enabled.Value = true
  50. end
  51. end
  52. end)
  53.  
  54. ------------------------------------------------------------------------------------------------------------------------------------------------
  55.  
  56. hum.Died:Connect(function()
  57. if keydown then keydown:Disconnect() end
  58. if keyup then keyup:Disconnect() end
  59. if enabling then enabling:Disconnect() end
  60. died = true
  61. end)
  62.  
  63. ------------------------------------------------------------------------------------------------------------------------------------------------
  64.  
  65.  
  66. while true do
  67. if died == true then break end
  68. if enabled.Value == true then
  69. if running == true then
  70. local root = char:FindFirstChild("HumanoidRootPart")
  71. if root then
  72. --root.CFrame = root.CFrame + (cam.CFrame + cam.CFrame.lookVector*1).lookVector * 2
  73. root.CFrame = root.CFrame + Vector3.new(
  74. ((cam.CFrame + cam.CFrame.lookVector*1).lookVector * 1.5).X,
  75. 0,
  76. ((cam.CFrame + cam.CFrame.lookVector*1).lookVector * 1.5).Z
  77. )
  78. end
  79. end
  80. end
  81. wait()
  82. end
Add Comment
Please, Sign In to add comment