Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local gui = Instance.new("ScreenGui")
- gui.Parent = game.Players.LocalPlayer.PlayerGui
- -- Black and cyan colors
- local backgroundColor = Color3.new(0, 0, 0)
- local textColor = Color3.new(0, 1, 1)
- -- Function to create a button
- local function createButton(text, code)
- local button = Instance.new("TextButton")
- button.Parent = gui
- button.BackgroundColor3 = backgroundColor
- button.TextColor3 = textColor
- button.Size = UDim2.new(0, 200, 0, 30)
- button.Position = UDim2.new(0, 10, 0, (30 + 10) * (#gui:GetChildren() - 1))
- button.Text = text
- button.MouseButton1Click:Connect(function()
- loadstring(code)()
- end)
- end
- -- Create buttons with respective scripts
- createButton("Kill all", "loadstring(game:HttpGet('https://pastebin.com/raw/ZSpB0s23'))()")
- createButton("starscriptsx", "loadstring(game:HttpGet('https://raw.githubusercontent.com/migu-star/Scripts/main/Paintball.lua'))()")
- createButton("Eternity hub", [[local a="https://eternityhub.xyz/Script"
- local b=a.."/Eternity.lua"
- loadstring(game:HttpGet(b))()]])
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement