Advertisement
PEPE9999L0L

Speed and Jump hack

Feb 15th, 2023 (edited)
3,535
2
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 6.86 KB | Gaming | 2 0
  1. local SpeedJump = Instance.new("ScreenGui")
  2. local Frame = Instance.new("Frame")
  3. local Open = Instance.new("TextButton")
  4. local main = Instance.new("Frame")
  5. local Close = Instance.new("TextButton")
  6. local TextLabel1 = Instance.new("TextLabel")
  7. local TextLabel2 = Instance.new("TextLabel")
  8. local speed = Instance.new("TextBox")
  9. local jump = Instance.new("TextBox")
  10. local setSpeed = Instance.new("TextButton")
  11. local setJump = Instance.new("TextButton")
  12. local normalSpeed = Instance.new("TextButton")
  13. local normalJump = Instance.new("TextButton")
  14. local showSpeed = Instance.new("TextButton")
  15. local showJump = Instance.new("TextButton")
  16. local getSpeed = game.Players.LocalPlayer.Character.Humanoid.WalkSpeed
  17. local getJump = game.Players.LocalPlayer.Character.Humanoid.JumpPower
  18. local toggleSpeed = false
  19. local toggleJump = false
  20.  
  21. SpeedJump.Name = "Speed&Jump GUI"
  22. SpeedJump.Parent = game.CoreGui
  23.  
  24. Frame.Parent = SpeedJump
  25. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  26. Frame.Position = UDim2.new(0.912, 0, 0.489, 0)
  27. Frame.Size = UDim2.new(0, 103, 0, 36)
  28. Frame.Style = Enum.FrameStyle.DropShadow
  29.  
  30. Open.Name = "Open"
  31. Open.Parent = Frame
  32. Open.BackgroundColor3 = Color3.new(0, 0, 0)
  33. Open.BackgroundTransparency = 0.89999997615814
  34. Open.Position = UDim2.new(0.05, 0, -0.234, 0)
  35. Open.Size = UDim2.new(0, 79, 0, 30)
  36. Open.Font = Enum.Font.SciFi
  37. Open.Text = "Open"
  38. Open.TextColor3 = Color3.new(1, 1, 1)
  39. Open.TextSize = 14
  40. Open.MouseButton1Down:connect(function()
  41. main.Visible = true
  42. Frame.Visible = false
  43. end)
  44.  
  45. main.Name = "main"
  46. main.Parent = SpeedJump
  47. main.BackgroundColor3 = Color3.new(1, 1, 1)
  48. main.Position = UDim2.new(0.75, 0, 0.262203634, 0)
  49. main.Size = UDim2.new(0, 325, 0, 200)
  50. main.Style = Enum.FrameStyle.DropShadow
  51. main.Visible = false
  52. main.Active = true
  53. main.Draggable = true
  54.  
  55. Close.Name = "Close"
  56. Close.Parent = main
  57. Close.BackgroundColor3 = Color3.new(0, 0, 0)
  58. Close.BackgroundTransparency = 0.5
  59. Close.Position = UDim2.new(0.94, 0, -0.0113636367, 0)
  60. Close.Size = UDim2.new(0, 19, 0, 16)
  61. Close.Font = Enum.Font.SourceSans
  62. Close.Text = "X"
  63. Close.TextColor3 = Color3.new(0.333333, 1, 1)
  64. Close.TextSize = 14
  65. Close.MouseButton1Down:connect(function()
  66. Frame.Visible = true
  67. main.Visible = false
  68. main.Position = UDim2.new(0.75, 0, 0.262203634, 0)
  69. end)
  70.  
  71. TextLabel1.Name = "TextLabel1"
  72. TextLabel1.Parent = main
  73. TextLabel1.BackgroundColor3 = Color3.new(0, 0, 0)
  74. TextLabel1.BackgroundTransparency = 0.80000001192093
  75. TextLabel1.Position = UDim2.new(-0.00810807757, 0, -0.0105236284, 0)
  76. TextLabel1.Size = UDim2.new(0, 314, 0, 20)
  77. TextLabel1.Font = Enum.Font.SourceSans
  78. TextLabel1.Text = "Speed&Jump GUI"
  79. TextLabel1.TextColor3 = Color3.new(0, 1, 0)
  80. TextLabel1.TextSize = 14
  81.  
  82. TextLabel2.Name = "TextLabel2"
  83. TextLabel2.Parent = main
  84. TextLabel2.BackgroundColor3 = Color3.new(0, 0, 0)
  85. TextLabel2.BackgroundTransparency = 0.80000001192093
  86. TextLabel2.Position = UDim2.new(-0.00810807757, 0, 1.02, 0)
  87. TextLabel2.Size = UDim2.new(0, 314, 0, 20)
  88. TextLabel2.Font = Enum.Font.SourceSans
  89. TextLabel2.Text = "Made by PEPE9999L0L"
  90. TextLabel2.TextColor3 = Color3.new(0, 1, 0)
  91. TextLabel2.TextSize = 14
  92.  
  93. speed.Name = "Speed"
  94. speed.Parent = main
  95. speed.BackgroundColor3 = Color3.new(0, 0, 0)
  96. speed.BackgroundTransparency = 0.5
  97. speed.Position = UDim2.new(0.02, 0, 0.14, 0)
  98. speed.Size = UDim2.new(0, 142, 0, 32)
  99. speed.Font = Enum.Font.SourceSans
  100. speed.Text = "Speed Value"
  101. speed.TextColor3 = Color3.new(0, 1, 0)
  102. speed.TextSize = 14
  103.  
  104. jump.Name = "Jump"
  105. jump.Parent = main
  106. jump.BackgroundColor3 = Color3.new(0, 0, 0)
  107. jump.BackgroundTransparency = 0.5
  108. jump.Position = UDim2.new(0.52, 0, 0.14, 0)
  109. jump.Size = UDim2.new(0, 142, 0, 32)
  110. jump.Font = Enum.Font.SourceSans
  111. jump.Text = "Jump Value"
  112. jump.TextColor3 = Color3.new(0, 1, 0)
  113. jump.TextSize = 14
  114.  
  115. setSpeed.Name = "Speed"
  116. setSpeed.Parent = main
  117. setSpeed.BackgroundColor3 = Color3.new(0, 0, 0)
  118. setSpeed.BackgroundTransparency = 0.5
  119. setSpeed.Position = UDim2.new(0.02, 0, 0.36, 0)
  120. setSpeed.Size = UDim2.new(0, 142, 0, 32)
  121. setSpeed.Font = Enum.Font.SourceSans
  122. setSpeed.Text = "Set Speed"
  123. setSpeed.TextColor3 = Color3.new(0, 1, 0)
  124. setSpeed.TextSize = 14
  125. setSpeed.MouseButton1Down:connect(function()
  126.     toggleSpeed = true
  127.     while toggleSpeed == true do
  128.         game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = speed.Text
  129.         wait()
  130.     end
  131. end)
  132.  
  133. setJump.Name = "Jump"
  134. setJump.Parent = main
  135. setJump.BackgroundColor3 = Color3.new(0, 0, 0)
  136. setJump.BackgroundTransparency = 0.5
  137. setJump.Position = UDim2.new(0.52, 0, 0.36, 0)
  138. setJump.Size = UDim2.new(0, 142, 0, 32)
  139. setJump.Font = Enum.Font.SourceSans
  140. setJump.Text = "Set Jump"
  141. setJump.TextColor3 = Color3.new(0, 1, 0)
  142. setJump.TextSize = 14
  143. setJump.MouseButton1Down:connect(function()
  144.     toggleJump = true
  145.     while toggleJump == true do
  146.         game.Players.LocalPlayer.Character.Humanoid.JumpPower = jump.Text
  147.         wait()
  148.     end
  149. end)
  150.  
  151. showSpeed.Name = "Speed"
  152. showSpeed.Parent = main
  153. showSpeed.BackgroundColor3 = Color3.new(0, 0, 0)
  154. showSpeed.BackgroundTransparency = 0.5
  155. showSpeed.Position = UDim2.new(0.02, 0, 0.58, 0)
  156. showSpeed.Size = UDim2.new(0, 142, 0, 32)
  157. showSpeed.Font = Enum.Font.SourceSans
  158. showSpeed.Text = "Show Speed"
  159. showSpeed.TextColor3 = Color3.new(0, 1, 0)
  160. showSpeed.TextSize = 14
  161. showSpeed.MouseButton1Down:connect(function()
  162.     showSpeed.Text = game.Players.LocalPlayer.Character.Humanoid.WalkSpeed
  163. end)
  164.  
  165. showJump.Name = "Jump"
  166. showJump.Parent = main
  167. showJump.BackgroundColor3 = Color3.new(0, 0, 0)
  168. showJump.BackgroundTransparency = 0.5
  169. showJump.Position = UDim2.new(0.52, 0, 0.58, 0)
  170. showJump.Size = UDim2.new(0, 142, 0, 32)
  171. showJump.Font = Enum.Font.SourceSans
  172. showJump.Text = "Show Jump"
  173. showJump.TextColor3 = Color3.new(0, 1, 0)
  174. showJump.TextSize = 14
  175. showJump.MouseButton1Down:connect(function()
  176.     showJump.Text = game.Players.LocalPlayer.Character.Humanoid.JumpPower
  177. end)
  178.  
  179. normalSpeed.Name = "Speed"
  180. normalSpeed.Parent = main
  181. normalSpeed.BackgroundColor3 = Color3.new(0, 0, 0)
  182. normalSpeed.BackgroundTransparency = 0.5
  183. normalSpeed.Position = UDim2.new(0.02, 0, 0.8, 0)
  184. normalSpeed.Size = UDim2.new(0, 142, 0, 32)
  185. normalSpeed.Font = Enum.Font.SourceSans
  186. normalSpeed.Text = "Normal Speed"
  187. normalSpeed.TextColor3 = Color3.new(0, 1, 0)
  188. normalSpeed.TextSize = 14
  189. normalSpeed.MouseButton1Down:connect(function()
  190.     toggleSpeed = false
  191.     game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = getSpeed
  192. end)
  193.  
  194. normalJump.Name = "Jump"
  195. normalJump.Parent = main
  196. normalJump.BackgroundColor3 = Color3.new(0, 0, 0)
  197. normalJump.BackgroundTransparency = 0.5
  198. normalJump.Position = UDim2.new(0.52, 0, 0.8, 0)
  199. normalJump.Size = UDim2.new(0, 142, 0, 32)
  200. normalJump.Font = Enum.Font.SourceSans
  201. normalJump.Text = "Normal Jump"
  202. normalJump.TextColor3 = Color3.new(0, 1, 0)
  203. normalJump.TextSize = 14
  204. normalJump.MouseButton1Down:connect(function()
  205.     toggleJump = false
  206.     game.Players.LocalPlayer.Character.Humanoid.JumpPower = getJump
  207. end)
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement