Advertisement
A-X-O-L-O-T-L

field trip z gui WALKSPEED infinite jump

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