Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --Simple but working and effective
- -- Farewell Infortality.
- -- Version: 2.82
- -- Instances:
- local gui = Instance.new("ScreenGui")
- local speed = Instance.new("TextButton")
- local num = Instance.new("TextBox")
- local jump = Instance.new("TextButton")
- --Properties:
- gui.Name = "gui"
- gui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
- speed.Name = "speed"
- speed.Parent = gui
- speed.BackgroundColor3 = Color3.new(0.262745, 0.262745, 0.262745)
- speed.Position = UDim2.new(0.0197316483, 0, 0.877013147, 0)
- speed.Size = UDim2.new(0, 100, 0, 50)
- speed.Font = Enum.Font.SourceSans
- speed.Text = "Speed"
- speed.TextColor3 = Color3.new(0, 0, 0)
- speed.TextSize = 18
- speed.TextWrapped = true
- num.Name = "num"
- num.Parent = gui
- num.BackgroundColor3 = Color3.new(0.262745, 0.262745, 0.262745)
- num.Position = UDim2.new(0.0315706395, 0, 0.795021951, 0)
- num.Size = UDim2.new(0, 200, 0, 50)
- num.Font = Enum.Font.SourceSansBold
- num.Text = "Value here..."
- num.TextColor3 = Color3.new(0, 0, 0)
- num.TextSize = 20
- num.TextWrapped = true
- jump.Name = "jump"
- jump.Parent = gui
- jump.BackgroundColor3 = Color3.new(0.262745, 0.262745, 0.262745)
- jump.Position = UDim2.new(0.122336231, 0, 0.877013147, 0)
- jump.Size = UDim2.new(0, 100, 0, 50)
- jump.Font = Enum.Font.SourceSans
- jump.Text = "Jump"
- jump.TextColor3 = Color3.new(0, 0, 0)
- jump.TextSize = 20
- jump.TextWrapped = true
- -- Scripts:
- jump.MouseButton1Click:Connect(function()
- while true do
- wait(0.01)
- jump.Text = game.Players.LocalPlayer.Character.Humanoid.JumpPower = num.Text
- end
- end)
- speed.MouseButton1Click:Connect(function()
- while true do
- wait(0.01)
- speed.Text = game.Players.LocalPlayer.Character.Humanoid.WalkSpeed
- end
- end)
- --have fun ;)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement