Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- A GameGuardian's Roblox GUI
- -- Actually Made By ThunderModders X
- -- hehehehehehehehehehehehehehehehehe
- -- Instances:
- local ScreenGui = Instance.new("ScreenGui")
- local main = Instance.new("Frame")
- local DEV = Instance.new("TextLabel")
- local Speedhaxx = Instance.new("TextButton")
- local JumpPower = Instance.new("TextButton")
- local exit = Instance.new("TextButton")
- local openmain = Instance.new("Frame")
- local open = Instance.new("TextButton")
- --Properties:
- ScreenGui.Parent = game.CoreGui
- ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- main.Name = "main"
- main.Parent = ScreenGui
- main.BackgroundColor3 = Color3.fromRGB(0, 0, 255)
- main.Position = UDim2.new(0.294520617, 0, 0.468127489, 0)
- main.Size = UDim2.new(0, 420, 0, 211)
- main.Visible = false
- main.Active = true
- main.Draggable = true
- DEV.Name = "DEV"
- DEV.Parent = main
- DEV.BackgroundColor3 = Color3.fromRGB(85, 0, 127)
- DEV.Size = UDim2.new(0, 390, 0, 30)
- DEV.Font = Enum.Font.SourceSans
- DEV.Text = "GameGuardian's Roblox GUI"
- DEV.TextColor3 = Color3.fromRGB(0, 0, 0)
- DEV.TextSize = 14.000
- Speedhaxx.Name = "Speedhaxx"
- Speedhaxx.Parent = main
- Speedhaxx.BackgroundColor3 = Color3.fromRGB(85, 0, 127)
- Speedhaxx.Position = UDim2.new(-1.49011612e-08, 0, 0.450236946, 0)
- Speedhaxx.Size = UDim2.new(0, 124, 0, 43)
- Speedhaxx.Font = Enum.Font.SourceSans
- Speedhaxx.Text = "speed"
- Speedhaxx.TextColor3 = Color3.fromRGB(0, 0, 0)
- Speedhaxx.TextSize = 14.000
- Speedhaxx.TextWrapped = true
- Speedhaxx.MouseButton1Click:connect(function()
- game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 70
- end)
- JumpPower.Name = "JumpPower"
- JumpPower.Parent = main
- JumpPower.BackgroundColor3 = Color3.fromRGB(85, 0, 127)
- JumpPower.Position = UDim2.new(0.704761863, 0, 0.450236946, 0)
- JumpPower.Size = UDim2.new(0, 124, 0, 43)
- JumpPower.Font = Enum.Font.SourceSans
- JumpPower.Text = "JumpPower"
- JumpPower.TextColor3 = Color3.fromRGB(0, 0, 0)
- JumpPower.TextSize = 14.000
- JumpPower.TextWrapped = true
- JumpPower.MouseButton1Click:connect(function()
- game.Players.LocalPlayer.Character.Humanoid.JumpPower = 115
- end)
- exit.Name = "exit"
- exit.Parent = main
- exit.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
- exit.Position = UDim2.new(0.916666567, 0, 0, 0)
- exit.Size = UDim2.new(0, 35, 0, 30)
- exit.Font = Enum.Font.Fantasy
- exit.Text = "X"
- exit.TextColor3 = Color3.fromRGB(0, 0, 0)
- exit.TextSize = 14.000
- exit.TextWrapped = true
- exit.MouseButton1Down:connect(function()
- main.Visible = false
- openmain.Visible = true
- end)
- openmain.Name = "openmain"
- openmain.Parent = ScreenGui
- openmain.BackgroundColor3 = Color3.fromRGB(0, 0, 255)
- openmain.Position = UDim2.new(0, 0, 0.418326676, 0)
- openmain.Size = UDim2.new(0, 95, 0, 27)
- open.Name = "open"
- open.Parent = openmain
- open.BackgroundColor3 = Color3.fromRGB(85, 0, 127)
- open.Position = UDim2.new(-0.00670904852, 0, 0, 0)
- open.Size = UDim2.new(0, 95, 0, 26)
- open.Font = Enum.Font.Highway
- open.Text = "Open"
- open.TextColor3 = Color3.fromRGB(0, 0, 0)
- open.TextSize = 14.000
- open.TextWrapped = true
- open.MouseButton1Down:connect(function()
- openmain.Visible = false
- main.Visible = true
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement