Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --Normal JumpPower - 50
- --Normal WalkSpeed - 16
- -- Instances:
- local ScreenGui = Instance.new("ScreenGui")
- local openclosegui = Instance.new("TextButton")
- local Frame = Instance.new("Frame")
- local speed = Instance.new("TextBox")
- local connectspeed = Instance.new("TextButton")
- local jump = Instance.new("TextBox")
- local TextButton = Instance.new("TextButton")
- --Properties:
- ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
- openclosegui.Name = "openclosegui"
- openclosegui.Parent = ScreenGui
- openclosegui.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- openclosegui.Position = UDim2.new(0.949999988, 0, 0.91652751, 0)
- openclosegui.Size = UDim2.new(0, 62, 0, 50)
- openclosegui.Font = Enum.Font.SourceSans
- openclosegui.Text = "Open"
- openclosegui.TextColor3 = Color3.fromRGB(0, 0, 0)
- openclosegui.TextSize = 24.000
- Frame.Parent = ScreenGui
- Frame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Frame.Position = UDim2.new(0.379838705, 0, 0.250417352, 0)
- Frame.Size = UDim2.new(0, 300, 0, 300)
- Frame.Visible = false
- speed.Name = "speed"
- speed.Parent = Frame
- speed.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
- speed.Position = UDim2.new(0.496884435, 0, 0.00333333341, 0)
- speed.Size = UDim2.new(0, 150, 0, 150)
- speed.Font = Enum.Font.SourceSans
- speed.Text = ""
- speed.TextColor3 = Color3.fromRGB(0, 0, 0)
- speed.TextScaled = true
- speed.TextSize = 14.000
- speed.TextWrapped = true
- connectspeed.Name = "connectspeed"
- connectspeed.Parent = Frame
- connectspeed.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- connectspeed.Position = UDim2.new(-0.00477666454, 0, 0.00249578431, 0)
- connectspeed.Size = UDim2.new(0, 150, 0, 150)
- connectspeed.Font = Enum.Font.SourceSans
- connectspeed.Text = "Connect"
- connectspeed.TextColor3 = Color3.fromRGB(0, 0, 0)
- connectspeed.TextScaled = true
- connectspeed.TextSize = 14.000
- connectspeed.TextWrapped = true
- jump.Name = "jump"
- jump.Parent = Frame
- jump.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
- jump.Position = UDim2.new(0.496895581, 0, 0.505016744, 0)
- jump.Size = UDim2.new(0, 150, 0, 150)
- jump.Font = Enum.Font.SourceSans
- jump.Text = ""
- jump.TextColor3 = Color3.fromRGB(0, 0, 0)
- jump.TextScaled = true
- jump.TextSize = 14.000
- jump.TextWrapped = true
- TextButton.Parent = Frame
- TextButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- TextButton.Position = UDim2.new(-0.00666666683, 0, 0.502495706, 0)
- TextButton.Size = UDim2.new(0, 150, 0, 150)
- TextButton.Font = Enum.Font.SourceSans
- TextButton.Text = "Connect"
- TextButton.TextColor3 = Color3.fromRGB(0, 0, 0)
- TextButton.TextScaled = true
- TextButton.TextSize = 14.000
- TextButton.TextWrapped = true
- -- Scripts:
- local function THEEZI_fake_script() -- openclosegui.LocalScript
- local script = Instance.new('LocalScript', openclosegui)
- local gui = script.Parent.Parent
- function closeopengui()
- if gui.Frame.Visible == true then
- gui.Frame.Visible = false
- gui.openclosegui.Text = 'Open'
- else
- gui.Frame.Visible = true
- gui.openclosegui.Text = 'Close'
- end
- if gui.openclosegui.Text == 'Open' then
- gui.Frame.speed.Text = 'WalkSpeed'
- gui.Frame.jump.Text = 'JumpPower'
- end
- end
- function givespeed()
- if gui.Frame.speed.Text == 'WalkSpeed' then
- print('Write a number.')
- else
- game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = gui.Frame.speed.Text
- end
- end
- function givejump()
- if gui.Frame.jump.Text == 'JumpPower' then
- print('Write a number.')
- else
- game.Players.LocalPlayer.Character.Humanoid.JumpPower = gui.Frame.jump.Text
- end
- end
- gui.Frame.connectspeed.MouseButton1Down:Connect(givespeed)
- gui.Frame.TextButton.MouseButton1Down:Connect(givejump)
- gui.openclosegui.MouseButton1Down:Connect(closeopengui)
- end
- coroutine.wrap(THEEZI_fake_script)()
Add Comment
Please, Sign In to add comment