Advertisement
Guest User

[R] Basic FE WalkSpeed/JumpPower GUI

a guest
Oct 7th, 2018
3,566
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.71 KB | None | 0 0
  1. --Simple but working and effective
  2. -- Farewell Infortality.
  3. -- Version: 2.82
  4. -- Instances:
  5. local gui = Instance.new("ScreenGui")
  6. local speed = Instance.new("TextButton")
  7. local num = Instance.new("TextBox")
  8. local jump = Instance.new("TextButton")
  9. --Properties:
  10. gui.Name = "gui"
  11. gui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  12.  
  13. speed.Name = "speed"
  14. speed.Parent = gui
  15. speed.BackgroundColor3 = Color3.new(0.262745, 0.262745, 0.262745)
  16. speed.Position = UDim2.new(0.0197316483, 0, 0.877013147, 0)
  17. speed.Size = UDim2.new(0, 100, 0, 50)
  18. speed.Font = Enum.Font.SourceSans
  19. speed.Text = "Speed"
  20. speed.TextColor3 = Color3.new(0, 0, 0)
  21. speed.TextSize = 18
  22. speed.TextWrapped = true
  23.  
  24. num.Name = "num"
  25. num.Parent = gui
  26. num.BackgroundColor3 = Color3.new(0.262745, 0.262745, 0.262745)
  27. num.Position = UDim2.new(0.0315706395, 0, 0.795021951, 0)
  28. num.Size = UDim2.new(0, 200, 0, 50)
  29. num.Font = Enum.Font.SourceSansBold
  30. num.Text = "Value here..."
  31. num.TextColor3 = Color3.new(0, 0, 0)
  32. num.TextSize = 20
  33. num.TextWrapped = true
  34.  
  35. jump.Name = "jump"
  36. jump.Parent = gui
  37. jump.BackgroundColor3 = Color3.new(0.262745, 0.262745, 0.262745)
  38. jump.Position = UDim2.new(0.122336231, 0, 0.877013147, 0)
  39. jump.Size = UDim2.new(0, 100, 0, 50)
  40. jump.Font = Enum.Font.SourceSans
  41. jump.Text = "Jump"
  42. jump.TextColor3 = Color3.new(0, 0, 0)
  43. jump.TextSize = 20
  44. jump.TextWrapped = true
  45. -- Scripts:
  46.  
  47. jump.MouseButton1Click:Connect(function()
  48. while true do
  49. wait(0.01)
  50. jump.Text = game.Players.LocalPlayer.Character.Humanoid.JumpPower = num.Text
  51. end
  52. end)
  53.  
  54.  
  55. speed.MouseButton1Click:Connect(function()
  56. while true do
  57. wait(0.01)
  58. speed.Text = game.Players.LocalPlayer.Character.Humanoid.WalkSpeed
  59. end
  60. end)
  61.  
  62. --have fun ;)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement