Advertisement
RandomNewbieScripter

Untitled

Aug 25th, 2017
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.49 KB | None | 0 0
  1. print("Loading GUI...")
  2. --[[
  3.     //Desc: A Gui for doing abuse things on
  4.     //Creator: Anonymous
  5. --]]
  6. p = game.Players.LocalPlayer
  7. local sg = Instance.new("ScreenGui", p.PlayerGui)
  8.  
  9.  
  10. -- Create Frame
  11. local frame = Instance.new("Frame")
  12. frame.Parent = sg
  13. frame.Name = "SbCore"
  14. frame.Position = UDim2.new(0, 0, 0.315, 0)
  15. frame.Size = UDim2.new(0, 424, 0, 280)
  16. --Label
  17. local TB = Instance.new("TextBox")
  18.  
  19.  
  20. -- Create our first button
  21.  
  22. local b1 = Instance.new("TextButton", sg)
  23. b1.Position = UDim2.new(0, 0, 0.315, 50)
  24. b1.Size = UDim2.new(0, 150, 0, 50)
  25. b1.BackgroundColor3 = BrickColor.White().Color
  26. b1.Text = "Kill All"
  27. b1.MouseButton1Down:connect(function()
  28.     b1.Text = "Killed All"
  29.     for i,v in pairs(game.Players:GetChildren()) do
  30. v.Character:BreakJoints()
  31. end
  32. end)
  33. local b2 = Instance.new("TextButton", sg)
  34. b2.Position = UDim2.new(0, 0, 0.315, 100)
  35. b2.Size = UDim2.new(0, 150, 0, 50)
  36. b2.BackgroundColor3 = BrickColor.White().Color
  37. b2.Text = "Ear Rape"
  38. b2.MouseButton1Down:connect(function()
  39. local killsoun = Instance.new("Sound")
  40. killsoun.SoundId = "http://www.roblox.com/asset/?id=338005348"
  41. killsoun.Volume = 10
  42. killsoun.Parent = game.Players
  43. killsoun.Pitch = 1
  44. killsoun.Looped = true
  45. killsoun:Play()
  46. end)
  47. local b3 = Instance.new("TextButton", sg)
  48. b3.Position = UDim2.new(0, 0, 0.315, 150)
  49. b3.Size = UDim2.new(0, 150, 0, 50)
  50. b3.BackgroundColor3 = BrickColor.White().Color
  51. b3.Text = "Clear Workspace"
  52. b3.MouseButton1Down:connect(function()
  53. game.Workspace:ClearAllChildren()
  54. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement