Advertisement
bardhi_08

SpeedHack

May 9th, 2020 (edited)
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.34 KB | None | 0 0
  1. -- Objects
  2.  
  3. local GUI = Instance.new("ScreenGui")
  4. local Main = Instance.new("Frame")
  5. local Creds = Instance.new("TextLabel")
  6. local WSValue = Instance.new("TextBox")
  7. local JPValue = Instance.new("TextBox")
  8. local JP = Instance.new("TextLabel")
  9. local WS = Instance.new("TextLabel")
  10. -- Properties
  11.  
  12. GUI.Name = "GUI"
  13. GUI.Parent = game.Players.LocalPlayer.PlayerGui
  14.  
  15. Main.Name = "Main"
  16. Main.Parent = GUI
  17. Main.Active = true
  18. Main.BackgroundColor3 = Color3.new(1, 1, 1)
  19. Main.BorderSizePixel = 0
  20. Main.Draggable = true
  21. Main.Position = UDim2.new(0, 0, 0.5, -103)
  22. Main.Size = UDim2.new(0, 392, 0, 217)
  23.  
  24. Creds.Name = "Creds"
  25. Creds.Parent = Main
  26. Creds.BackgroundColor3 = Color3.new(1, 1, 1)
  27. Creds.BorderSizePixel = 0
  28. Creds.Position = UDim2.new(0, 0, 0.769585252, 0)
  29. Creds.Size = UDim2.new(0, 392, 0, 50)
  30. Creds.Font = Enum.Font.SourceSansLight
  31. Creds.Text = "Made by:IHaveKnifee\nIdea by:dr.bardhi"
  32. Creds.TextScaled = true
  33. Creds.TextSize = 12
  34. Creds.TextWrapped = true
  35.  
  36. WSValue.Name = "WSValue"
  37. WSValue.Parent = Main
  38. WSValue.BackgroundColor3 = Color3.new(0.207843, 0.658824, 1)
  39. WSValue.BorderSizePixel = 0
  40. WSValue.Position = UDim2.new(0.0382653065, 0, 0.129032254, 0)
  41. WSValue.Size = UDim2.new(0, 357, 0, 26)
  42. WSValue.Font = Enum.Font.SourceSansLight
  43. WSValue.Text = "16"
  44. WSValue.TextSize = 25
  45.  
  46. JPValue.Name = "JPValue"
  47. JPValue.Parent = Main
  48. JPValue.BackgroundColor3 = Color3.new(0.207843, 0.658824, 1)
  49. JPValue.BorderSizePixel = 0
  50. JPValue.Position = UDim2.new(0.0382653065, 0, 0.48617512, 0)
  51. JPValue.Size = UDim2.new(0, 357, 0, 26)
  52. JPValue.Font = Enum.Font.SourceSansLight
  53. JPValue.Text = "50"
  54. JPValue.TextSize = 25
  55.  
  56. JP.Name = "JP"
  57. JP.Parent = Main
  58. JP.BackgroundColor3 = Color3.new(1, 1, 1)
  59. JP.BorderSizePixel = 0
  60. JP.Position = UDim2.new(0, 0, 0.357142866, 0)
  61. JP.Size = UDim2.new(0, 392, 0, 28)
  62. JP.Font = Enum.Font.SourceSansLight
  63. JP.Text = "JumpPower"
  64. JP.TextScaled = true
  65. JP.TextSize = 14
  66. JP.TextWrapped = true
  67.  
  68. WS.Name = "WS"
  69. WS.Parent = Main
  70. WS.BackgroundColor3 = Color3.new(1, 1, 1)
  71. WS.BorderSizePixel = 0
  72. WS.Size = UDim2.new(0, 392, 0, 28)
  73. WS.Font = Enum.Font.SourceSansLight
  74. WS.Text = "WalkSpeed"
  75. WS.TextScaled = true
  76. WS.TextSize = 14
  77. WS.TextWrapped = true
  78.  
  79.  
  80.  
  81. while true do
  82. wait()
  83. local human = game.Players.LocalPlayer.Character.Humanoid
  84. human.WalkSpeed = WSValue.Text
  85. human.JumpPower = JPValue.Text
  86. end
  87.  
  88. local open = true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement