Advertisement
Guest User

GameGuardian's Roblox GUI

a guest
Dec 22nd, 2019
1,688
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.09 KB | None | 0 0
  1. -- A GameGuardian's Roblox GUI
  2. -- Actually Made By ThunderModders X
  3. -- hehehehehehehehehehehehehehehehehe
  4.  
  5. -- Instances:
  6.  
  7. local ScreenGui = Instance.new("ScreenGui")
  8. local main = Instance.new("Frame")
  9. local DEV = Instance.new("TextLabel")
  10. local Speedhaxx = Instance.new("TextButton")
  11. local JumpPower = Instance.new("TextButton")
  12. local exit = Instance.new("TextButton")
  13. local openmain = Instance.new("Frame")
  14. local open = Instance.new("TextButton")
  15.  
  16. --Properties:
  17.  
  18. ScreenGui.Parent = game.CoreGui
  19. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  20.  
  21. main.Name = "main"
  22. main.Parent = ScreenGui
  23. main.BackgroundColor3 = Color3.fromRGB(0, 0, 255)
  24. main.Position = UDim2.new(0.294520617, 0, 0.468127489, 0)
  25. main.Size = UDim2.new(0, 420, 0, 211)
  26. main.Visible = false
  27. main.Active = true
  28. main.Draggable = true
  29.  
  30. DEV.Name = "DEV"
  31. DEV.Parent = main
  32. DEV.BackgroundColor3 = Color3.fromRGB(85, 0, 127)
  33. DEV.Size = UDim2.new(0, 390, 0, 30)
  34. DEV.Font = Enum.Font.SourceSans
  35. DEV.Text = "GameGuardian's Roblox GUI"
  36. DEV.TextColor3 = Color3.fromRGB(0, 0, 0)
  37. DEV.TextSize = 14.000
  38.  
  39. Speedhaxx.Name = "Speedhaxx"
  40. Speedhaxx.Parent = main
  41. Speedhaxx.BackgroundColor3 = Color3.fromRGB(85, 0, 127)
  42. Speedhaxx.Position = UDim2.new(-1.49011612e-08, 0, 0.450236946, 0)
  43. Speedhaxx.Size = UDim2.new(0, 124, 0, 43)
  44. Speedhaxx.Font = Enum.Font.SourceSans
  45. Speedhaxx.Text = "speed"
  46. Speedhaxx.TextColor3 = Color3.fromRGB(0, 0, 0)
  47. Speedhaxx.TextSize = 14.000
  48. Speedhaxx.TextWrapped = true
  49. Speedhaxx.MouseButton1Click:connect(function()
  50. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 70
  51. end)
  52.  
  53. JumpPower.Name = "JumpPower"
  54. JumpPower.Parent = main
  55. JumpPower.BackgroundColor3 = Color3.fromRGB(85, 0, 127)
  56. JumpPower.Position = UDim2.new(0.704761863, 0, 0.450236946, 0)
  57. JumpPower.Size = UDim2.new(0, 124, 0, 43)
  58. JumpPower.Font = Enum.Font.SourceSans
  59. JumpPower.Text = "JumpPower"
  60. JumpPower.TextColor3 = Color3.fromRGB(0, 0, 0)
  61. JumpPower.TextSize = 14.000
  62. JumpPower.TextWrapped = true
  63. JumpPower.MouseButton1Click:connect(function()
  64. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 115
  65. end)
  66.  
  67. exit.Name = "exit"
  68. exit.Parent = main
  69. exit.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  70. exit.Position = UDim2.new(0.916666567, 0, 0, 0)
  71. exit.Size = UDim2.new(0, 35, 0, 30)
  72. exit.Font = Enum.Font.Fantasy
  73. exit.Text = "X"
  74. exit.TextColor3 = Color3.fromRGB(0, 0, 0)
  75. exit.TextSize = 14.000
  76. exit.TextWrapped = true
  77. exit.MouseButton1Down:connect(function()
  78. main.Visible = false
  79. openmain.Visible = true
  80. end)
  81.  
  82. openmain.Name = "openmain"
  83. openmain.Parent = ScreenGui
  84. openmain.BackgroundColor3 = Color3.fromRGB(0, 0, 255)
  85. openmain.Position = UDim2.new(0, 0, 0.418326676, 0)
  86. openmain.Size = UDim2.new(0, 95, 0, 27)
  87.  
  88. open.Name = "open"
  89. open.Parent = openmain
  90. open.BackgroundColor3 = Color3.fromRGB(85, 0, 127)
  91. open.Position = UDim2.new(-0.00670904852, 0, 0, 0)
  92. open.Size = UDim2.new(0, 95, 0, 26)
  93. open.Font = Enum.Font.Highway
  94. open.Text = "Open"
  95. open.TextColor3 = Color3.fromRGB(0, 0, 0)
  96. open.TextSize = 14.000
  97. open.TextWrapped = true
  98. open.MouseButton1Down:connect(function()
  99. openmain.Visible = false
  100. main.Visible = true
  101. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement