Advertisement
mjv2023

god hub 2

Aug 22nd, 2023
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.81 KB | None | 0 0
  1. -- Create a ScreenGui to hold the GUI elements
  2. local gui = Instance.new("ScreenGui")
  3. gui.Name = "MyRobloxGui"
  4. gui.Parent = game.Players.LocalPlayer.PlayerGui
  5.  
  6. -- Create a function to add buttons
  7. local function addButton(text, script, yOffset)
  8. local button = Instance.new("TextButton")
  9. button.Name = text
  10. button.Text = text
  11. button.Size = UDim2.new(0, 200, 0, 50)
  12. button.Position = UDim2.new(0.5, -100, yOffset, 0)
  13. button.Parent = gui
  14.  
  15. button.MouseButton1Click:Connect(function()
  16. -- Load and execute the provided script
  17. loadstring(script)()
  18. end)
  19. end
  20.  
  21. -- Add buttons with their corresponding scripts and offsets
  22. addButton("EZ MODE", "game:HttpGet(('https://pastebin.com/raw/rC091nB4'),true)", 0.7)
  23. addButton("ESP", "game:HttpGet(('https://raw.githubusercontent.com/ic3w0lf22/Unnamed-ESP/master/UnnamedESP.lua'))", 0.75)
  24. addButton("Noclip GUI FE", "game:HttpGet(('https://pastebin.com/raw/9LBsfRkD'),true)", 0.8)
  25. addButton("ERASE YOUR ROBLOX HISTORY", "game:HttpGet(('https://pastebin.com/raw/UrGqqSBN'),true)", 0.85)
  26. addButton("hax use w a s d", "game:HttpGet(('https://pastebin.com/raw/MsL78SwX'),true)", 0.9)
  27. addButton("FREE ROBUX GENERATOR 2023-2024", "game:HttpGet('https://pastebin.com/raw/nt2dkyXT')", 0.95)
  28. addButton("REVENGE MODE DOORSπŸ’€πŸ’€πŸ’€πŸ’€πŸ’€πŸ’€πŸ’€πŸ’€πŸ’€πŸ’€πŸ’€πŸ’€", "game:HttpGet('https://pastebin.com/raw/x4haGbhD')", 1)
  29. addButton("youtube simulator fe", "game:GetService('TeleportService'):Teleport(13417808120, game.Players.LocalPlayer)", 1.05)
  30. addButton("Better roblox script", "game:HttpGet('https://eternityhub.xyz/BetterRoblox/Loader')", 1.1)
  31. addButton("Back to 2018 RobloxπŸ₯ΉπŸ₯Ή", "game.Players.LocalPlayer:Kick(' 2018 ROBLOX SIKE🀣🀣🀣🀣🀣')", 1.15)
  32. addButton("QUAN HUB", "game:HttpGet('https://pastebin.com/raw/3z90ALxy')", 1.2)
  33.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement