Not a member of gistpad yet?
Sign Up,
it unlocks many cool features!
- -- AMIR X HUB
- local ScreenGui = Instance.new("ScreenGui")
- local Frame = Instance.new("Frame")
- local Title = Instance.new("TextLabel")
- local Speed = Instance.new("TextButton")
- local Jump = Instance.new("TextButton")
- ScreenGui.Parent = game.CoreGui
- Frame.Parent = ScreenGui
- Frame.Size = UDim2.new(0,300,0,200)
- Frame.Position = UDim2.new(0.5,-150,0.5,-100)
- Frame.BackgroundColor3 = Color3.fromRGB(30,30,30)
- Title.Parent = Frame
- Title.Size = UDim2.new(1,0,0,40)
- Title.Text = "AMIR X HUB"
- Title.TextColor3 = Color3.new(1,1,1)
- Title.BackgroundTransparency = 1
- Speed.Parent = Frame
- Speed.Size = UDim2.new(0.8,0,0,40)
- Speed.Position = UDim2.new(0.1,0,0.3,0)
- Speed.Text = "Speed"
- Jump.Parent = Frame
- Jump.Size = UDim2.new(0.8,0,0,40)
- Jump.Position = UDim2.new(0.1,0,0.6,0)
- Jump.Text = "Jump"
- Speed.MouseButton1Click:Connect(function()
- game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 50
- end)
- Jump.MouseButton1Click:Connect(function()
- game.Players.LocalPlayer.Character.Humanoid.JumpPower = 100
- end)
RAW Gist Data
Copied
