Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- print("Loading GUI...")
- --[[
- //Desc: A Gui for doing abuse things on
- //Creator: Anonymous
- --]]
- p = game.Players.LocalPlayer
- local sg = Instance.new("ScreenGui", p.PlayerGui)
- -- Create Frame
- local frame = Instance.new("Frame")
- frame.Parent = sg
- frame.Name = "SbCore"
- frame.Position = UDim2.new(0, 0, 0.315, 0)
- frame.Size = UDim2.new(0, 424, 0, 280)
- --Label
- local TB = Instance.new("TextBox")
- -- Create our first button
- local b1 = Instance.new("TextButton", sg)
- b1.Position = UDim2.new(0, 0, 0.315, 50)
- b1.Size = UDim2.new(0, 150, 0, 50)
- b1.BackgroundColor3 = BrickColor.White().Color
- b1.Text = "Kill All"
- b1.MouseButton1Down:connect(function()
- b1.Text = "Killed All"
- for i,v in pairs(game.Players:GetChildren()) do
- v.Character:BreakJoints()
- end
- end)
- --buttons
- local b2 = Instance.new("TextButton", sg)
- b2.Position = UDim2.new(0, 0, 0.315, 100)
- b2.Size = UDim2.new(0, 150, 0, 50)
- b2.BackgroundColor3 = BrickColor.White().Color
- b2.Text = "Ear Rape"
- b2.MouseButton1Down:connect(function()
- local killsoun = Instance.new("Sound")
- killsoun.SoundId = "http://www.roblox.com/asset/?id=338005348"
- killsoun.Volume = 10
- killsoun.Parent = game.Players
- killsoun.Pitch = 1
- killsoun.Looped = true
- killsoun:Play()
- end)
- local b3 = Instance.new("TextButton", sg)
- b3.Position = UDim2.new(0, 0, 0.315, 150)
- b3.Size = UDim2.new(0, 150, 0, 50)
- b3.BackgroundColor3 = BrickColor.White().Color
- b3.Text = "Clear Workspace"
- b3.MouseButton1Down:connect(function()
- game.Workspace:ClearAllChildren()
- end)
- local b4 = Instance.new("TextButton", sg)
- b4.Position = UDim2.new(0, 0, 0.315, 200)
- b4.Size = UDim2.new(0, 150, 0, 50)
- b4.BackgroundColor3 = BrickColor.White().Color
- b4.Text = "<empty>"
- b4.MouseButton1Down:connect(function()
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement