Advertisement
mjv2023

BigPaintballGui

Aug 21st, 2023
231
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. local gui = Instance.new("ScreenGui")
  2. gui.Parent = game.Players.LocalPlayer.PlayerGui
  3.  
  4. -- Black and cyan colors
  5. local backgroundColor = Color3.new(0, 0, 0)
  6. local textColor = Color3.new(0, 1, 1)
  7.  
  8. -- Function to create a button
  9. local function createButton(text, code)
  10. local button = Instance.new("TextButton")
  11. button.Parent = gui
  12. button.BackgroundColor3 = backgroundColor
  13. button.TextColor3 = textColor
  14. button.Size = UDim2.new(0, 200, 0, 30)
  15. button.Position = UDim2.new(0, 10, 0, (30 + 10) * (#gui:GetChildren() - 1))
  16. button.Text = text
  17. button.MouseButton1Click:Connect(function()
  18. loadstring(code)()
  19. end)
  20. end
  21.  
  22. -- Create buttons with respective scripts
  23. createButton("Kill all", "loadstring(game:HttpGet('https://pastebin.com/raw/ZSpB0s23'))()")
  24. createButton("starscriptsx", "loadstring(game:HttpGet('https://raw.githubusercontent.com/migu-star/Scripts/main/Paintball.lua'))()")
  25. createButton("Eternity hub", [[local a="https://eternityhub.xyz/Script"
  26. local b=a.."/Eternity.lua"
  27. loadstring(game:HttpGet(b))()]])
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement