Advertisement
mjv2023

GOD GUI 2

Aug 22nd, 2023
305
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.17 KB | None | 0 0
  1. local function addButton(text, func, yPos)
  2. local gui = Instance.new("ScreenGui")
  3. gui.Name = "ButtonGui"
  4. gui.Parent = game.Players.LocalPlayer.PlayerGui
  5.  
  6. local frame = Instance.new("Frame")
  7. frame.Size = UDim2.new(0.4, 0, 0.1, 0)
  8. frame.Position = UDim2.new(0.3, 0, yPos, 0)
  9. frame.BackgroundColor3 = Color3.fromRGB(0, 170, 255) -- Cyan background
  10. frame.Parent = gui
  11.  
  12. local button = Instance.new("TextButton")
  13. button.Text = text
  14. button.Size = UDim2.new(1, -20, 1, -20)
  15. button.Position = UDim2.new(0, 10, 0, 10)
  16. button.Parent = frame
  17.  
  18. button.MouseButton1Click:Connect(function()
  19. loadstring(func)()
  20. end)
  21. end
  22.  
  23. addButton("DOORS ITEM GUI", "loadstring(game:HttpGet('https://pastebin.com/raw/4CR39r10'))()", 0.05)
  24. addButton("Lolcat's awesome script doors", "loadstring(game:HttpGet('https://lolcat.boo/awesomescript'))()", 0.1)
  25. addButton("Eternity hub", "loadstring(game:HttpGet('https://pastebin.com/raw/KT3capVA'))()", 0.15)
  26. addButton("FPS AIMLOCK", "loadstring(game:HttpGet('https://pastebin.com/raw/d76sHsT6'))()", 0.2)
  27. addButton("shears script doors", "loadstring(game:HttpGet('https://pastebin.com/raw/rXgH5FGT'))()", 0.25)
  28. addButton("Kohls admin house", "loadstring(game:HttpGet('https://pastebin.com/raw/suhpHtK3'))()", 0.3)
  29. addButton("OHIO MODE ANY GAME", "game.Players.LocalPlayer:Kick('IP. 92.28.211.234.')", 0.35)
  30. addButton("ADMIN GUI", "loadstring(game:HttpGet('https://pastebin.com/raw/849j71g7'))()", 0.4)
  31. addButton("AUTOFARM (ANY GAME)", "game:GetService('TeleportService'):Teleport(14264597231, game.Players.LocalPlayer)", 0.45)
  32. addButton("DOORS ALL GUI", "loadstring(game:HttpGet('https://pastebin.com/raw/R1dGgGsS'))()", 0.5)
  33. addButton("C00LKID GUI CODE", "loadstring(game:GetObjects('rbxassetid://473373681')[1].Source)()", 0.55)
  34. addButton("INFINITE YIELD", "loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()", 0.6)
  35. addButton("unfair hu", "loadstring(game:HttpGet(('https://raw.githubusercontent.com/rblxscriptsnet/unfair/main/rblxhub.lua'),true))()", 0.65)
  36. addButton("more", "loadstring(game:HttpGet('https://pastebin.com/raw/SUU5BrLP'))()", 1.2)
  37.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement