Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Gui to Lua
- -- Version: 3.2
- -- Instances:
- local Jumper = Instance.new("ScreenGui")
- local Frame = Instance.new("Frame")
- local TextBox = Instance.new("TextBox")
- local UICorner = Instance.new("UICorner")
- local UICorner_2 = Instance.new("UICorner")
- local onoff = Instance.new("TextButton")
- local UICorner_3 = Instance.new("UICorner")
- --Properties:
- Jumper.Name = "Jumper"
- Jumper.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
- Jumper.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- Frame.Parent = Jumper
- Frame.BackgroundColor3 = Color3.fromRGB(71, 71, 71)
- Frame.Position = UDim2.new(0.855644643, 0, 0.61988306, 0)
- Frame.Size = UDim2.new(0, 234, 0, 165)
- TextBox.Parent = Frame
- TextBox.BackgroundColor3 = Color3.fromRGB(120, 120, 120)
- TextBox.Position = UDim2.new(0.0726495683, 0, 0.0363636315, 0)
- TextBox.Size = UDim2.new(0, 200, 0, 42)
- TextBox.Font = Enum.Font.SourceSans
- TextBox.PlaceholderText = "Jump CoolDown here"
- TextBox.Text = "1"
- TextBox.TextColor3 = Color3.fromRGB(255, 255, 255)
- TextBox.TextSize = 14.000
- UICorner.CornerRadius = UDim.new(0, 5)
- UICorner.Parent = TextBox
- UICorner_2.CornerRadius = UDim.new(0.0599999987, 0)
- UICorner_2.Parent = Frame
- onoff.Name = "on/off"
- onoff.Parent = Frame
- onoff.BackgroundColor3 = Color3.fromRGB(102, 102, 102)
- onoff.Position = UDim2.new(0.324786335, 0, 0.393939376, 0)
- onoff.Size = UDim2.new(0, 82, 0, 35)
- onoff.Font = Enum.Font.SourceSansItalic
- onoff.Text = "Start"
- onoff.TextColor3 = Color3.fromRGB(0, 0, 0)
- onoff.TextScaled = true
- onoff.TextSize = 14.000
- onoff.TextWrapped = true
- UICorner_3.CornerRadius = UDim.new(0, 6)
- UICorner_3.Parent = onoff
- -- Scripts:
- local function XOIMW_fake_script() -- TextBox.LocalScript
- local script = Instance.new('LocalScript', TextBox)
- if script.Parent.Text == "0" then
- game.Players.LocalPlayer:Kick("dont set it to 0, it breaks your game.")
- end
- end
- coroutine.wrap(XOIMW_fake_script)()
- local function ISEVDFK_fake_script() -- onoff.LocalScript
- local script = Instance.new('LocalScript', onoff)
- script.Parent.MouseButton1Click:Connect(function()
- repeat
- game.Players.LocalPlayer.Character.Humanoid.Jump = true
- wait(script.Parent.Parent.TextBox.Text)
- until
- game.Players.LocalPlayer.Character.Humanoid.Health == -10
- end)
- end
- coroutine.wrap(ISEVDFK_fake_script)()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement