Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local FightingGui = Instance.new("ScreenGui")
- local main = Instance.new("Frame")
- local UICorner = Instance.new("UICorner")
- local UICorner2 = Instance.new("UICorner")
- local UICorner3 = Instance.new("UICorner")
- local UICorner4 = Instance.new("UICorner")
- local UICorner5 = Instance.new("UICorner")
- local UICorner6 = Instance.new("UICorner")
- local UICorner7 = Instance.new("UICorner")
- local Y = Instance.new("TextButton")
- local wsinput = Instance.new("TextBox")
- local setws = Instance.new("TextButton")
- local rews = Instance.new("TextButton")
- local Open = Instance.new("TextButton")
- local Close = Instance.new("TextButton")
- local S = Instance.new("ScreenGui")
- local U = Instance.new("ScreenGui")
- FightingGui.Name = "FightingGui"
- FightingGui.Parent = game.CoreGui
- FightingGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- S.Name = "S"
- S.Parent = game.CoreGui
- S.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- U.Name = "U"
- U.Parent = game.CoreGui
- U.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- main.Parent = FightingGui
- main.AnchorPoint = Vector2.new(1, 0)
- main.Active = true
- main.BackgroundColor3 = Color3.fromRGB(194, 194, 194)
- main.Position = UDim2.new(0.6, 0, 0.1, 0)
- main.Size = UDim2.new(0, 150, 0, 150)
- main.Draggable = true
- main.Visible = false
- UICorner.Parent = main
- UICorner2.Parent = Y
- UICorner3.Parent = wsinput
- UICorner4.Parent = setws
- UICorner5.Parent = rews
- UICorner6.Parent = Open
- UICorner7.Parent = Close
- Y.Name = "Y"
- Y.Parent = main
- Y.AnchorPoint = Vector2.new(0.9, 0)
- Y.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
- Y.Position = UDim2.new(0.90 , 0, 0.78, 0)
- Y.Size = UDim2.new(0, 149, 0, 32)
- Y.Font = Enum.Font.SourceSans
- Y.Text = "Remove"
- Y.TextColor3 = Color3.fromRGB(0, 0, 0)
- Y.TextScaled = true
- Y.TextSize = 14.000
- Y.TextWrapped = true
- Y.MouseButton1Click:Connect(function()
- main:Destroy()
- U:Destroy()
- S:Destroy()
- end)
- Open.Name = "Open"
- Open.Parent = S
- Open.AnchorPoint = Vector2.new(10, 0)
- Open.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
- Open.Position = UDim2.new(0.98, 0, 0.4, 0)
- Open.Size = UDim2.new(0, 35, 0, 30)
- Open.Font = Enum.Font.SourceSans
- Open.Text = ""
- Open.TextColor3 = Color3.fromRGB(0, 0, 0)
- Open.TextScaled = true
- Open.TextSize = 14.000
- Open.TextWrapped = true
- Open.MouseButton1Down:Connect(function()
- main.Visible = true
- U.Enabled = true
- S.Enabled = false
- Close.Visible = true
- end)
- Close.Name = "Close"
- Close.Parent = U
- Close.AnchorPoint = Vector2.new(10, 0)
- Close.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
- Close.Position = UDim2.new(0.98, 0, 0.4, 0)
- Close.Size = UDim2.new(0, 35, 0, 30)
- Close.Font = Enum.Font.SourceSans
- Close.Text = ""
- Close.TextColor3 = Color3.fromRGB(0, 0, 0)
- Close.TextScaled = true
- Close.TextSize = 14.000
- Close.TextWrapped = true
- Close.Visible = false
- Close.MouseButton1Down:Connect(function()
- main.Visible = false
- S.Enabled = true
- U.Enabled = false
- end)
- wsinput.Name = "wsinput"
- wsinput.Parent = main
- wsinput.AnchorPoint = Vector2.new(0.9, 0)
- wsinput.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- wsinput.Position = UDim2.new(0.897, 0, 0.004, 0)
- wsinput.Size = UDim2.new(0, 148, 0, 30)
- wsinput.Font = Enum.Font.SourceSans
- wsinput.Text = "Jump Value"
- wsinput.TextColor3 = Color3.fromRGB(255, 255, 255)
- wsinput.TextSize = 22.000
- setws.Name = "setws"
- setws.Parent = main
- setws.AnchorPoint = Vector2.new(0.9, 0)
- setws.BackgroundColor3 = Color3.fromRGB(85, 255, 255)
- setws.Position = UDim2.new(0.4, 0, 0.21, 0)
- setws.Size = UDim2.new(0, 56, 0, 30)
- setws.Font = Enum.Font.SourceSans
- setws.Text = "Set Jump"
- setws.TextColor3 = Color3.fromRGB(85, 0, 127)
- setws.TextSize = 14.000
- setws.MouseButton1Click:Connect(function()
- game.Players.LocalPlayer.Character.Humanoid.JumpPower = wsinput.Text
- end)
- rews.Name = "rews"
- rews.Parent = main
- rews.AnchorPoint = Vector2.new(0.9, 0)
- rews.BackgroundColor3 = Color3.fromRGB(85, 255, 255)
- rews.Position = UDim2.new(0.9, 0, 0.21, 0)
- rews.Size = UDim2.new(0, 56, 0, 30)
- rews.Font = Enum.Font.SourceSans
- rews.Text = "Reset Jump"
- rews.TextColor3 = Color3.fromRGB(85, 0, 127)
- rews.TextSize = 14.000
- rews.MouseButton1Click:Connect(function()
- game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement