Advertisement
RandomNewbieScripter

kekui

Aug 25th, 2017
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.74 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. --buttons
  34. local b2 = Instance.new("TextButton", sg)
  35. b2.Position = UDim2.new(0, 0, 0.315, 100)
  36. b2.Size = UDim2.new(0, 150, 0, 50)
  37. b2.BackgroundColor3 = BrickColor.White().Color
  38. b2.Text = "Ear Rape"
  39. b2.MouseButton1Down:connect(function()
  40. local killsoun = Instance.new("Sound")
  41. killsoun.SoundId = "http://www.roblox.com/asset/?id=338005348"
  42. killsoun.Volume = 10
  43. killsoun.Parent = game.Players
  44. killsoun.Pitch = 1
  45. killsoun.Looped = true
  46. killsoun:Play()
  47. end)
  48. local b3 = Instance.new("TextButton", sg)
  49. b3.Position = UDim2.new(0, 0, 0.315, 150)
  50. b3.Size = UDim2.new(0, 150, 0, 50)
  51. b3.BackgroundColor3 = BrickColor.White().Color
  52. b3.Text = "Clear Workspace"
  53. b3.MouseButton1Down:connect(function()
  54. game.Workspace:ClearAllChildren()
  55. end)
  56. local b4 = Instance.new("TextButton", sg)
  57. b4.Position = UDim2.new(0, 0, 0.315, 200)
  58. b4.Size = UDim2.new(0, 150, 0, 50)
  59. b4.BackgroundColor3 = BrickColor.White().Color
  60. b4.Text = "<empty>"
  61. b4.MouseButton1Down:connect(function()
  62.  
  63. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement