Guest

AMIR X HUB

Feb 22nd, 2026
6
0
Never
Not a member of gistpad yet? Sign Up, it unlocks many cool features!
None 2.78 KB | None | 0 0
  1. -- AMIR X HUB
  2.  
  3. local ScreenGui = Instance.new("ScreenGui")
  4. local Frame = Instance.new("Frame")
  5. local Title = Instance.new("TextLabel")
  6. local Speed = Instance.new("TextButton")
  7. local Jump = Instance.new("TextButton")
  8.  
  9. ScreenGui.Parent = game.CoreGui
  10.  
  11. Frame.Parent = ScreenGui
  12. Frame.Size = UDim2.new(0,300,0,200)
  13. Frame.Position = UDim2.new(0.5,-150,0.5,-100)
  14. Frame.BackgroundColor3 = Color3.fromRGB(30,30,30)
  15.  
  16. Title.Parent = Frame
  17. Title.Size = UDim2.new(1,0,0,40)
  18. Title.Text = "AMIR X HUB"
  19. Title.TextColor3 = Color3.new(1,1,1)
  20. Title.BackgroundTransparency = 1
  21.  
  22. Speed.Parent = Frame
  23. Speed.Size = UDim2.new(0.8,0,0,40)
  24. Speed.Position = UDim2.new(0.1,0,0.3,0)
  25. Speed.Text = "Speed"
  26.  
  27. Jump.Parent = Frame
  28. Jump.Size = UDim2.new(0.8,0,0,40)
  29. Jump.Position = UDim2.new(0.1,0,0.6,0)
  30. Jump.Text = "Jump"
  31.  
  32. Speed.MouseButton1Click:Connect(function()
  33. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 50
  34. end)
  35.  
  36. Jump.MouseButton1Click:Connect(function()
  37. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 100
  38. end)
RAW Gist Data Copied