Advertisement
iiDaCyborgxX

SPEED GUI

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