Advertisement
Guest User

fixed private gui

a guest
Feb 25th, 2018
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.13 KB | None | 0 0
  1. -- Objects
  2.  
  3. local PrivateSpamGui = Instance.new("ScreenGui")
  4. local ScriptFrame = Instance.new("Frame")
  5. local print = Instance.new("TextButton")
  6. local part = Instance.new("TextButton")
  7. local explosion = Instance.new("TextButton")
  8. local sit = Instance.new("TextButton")
  9. local vehicle = Instance.new("TextButton")
  10.  
  11. -- Properties
  12.  
  13. PrivateSpamGui.Name = "Private Spam Gui"
  14. PrivateSpamGui.Parent = game.Players.LocalPlayer.PlayerGui
  15.  
  16. ScriptFrame.Name = "ScriptFrame"
  17. ScriptFrame.Parent = PrivateSpamGui
  18. ScriptFrame.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  19. ScriptFrame.Position = UDim2.new(0.22584857, 0, 0.114832543, 0)
  20. ScriptFrame.Size = UDim2.new(0, 309, 0, 464)
  21.  
  22. print.Name = "print"
  23. print.Parent = ScriptFrame
  24. print.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  25. print.Size = UDim2.new(0, 200, 0, 50)
  26. print.Font = Enum.Font.SourceSans
  27. print.Text = "Spam Print "OOF"
  28. print.TextColor3 = Color3.new(0, 1, 1)
  29. print.TextScaled = true
  30. print.TextSize = 14
  31. print.TextWrapped = true
  32.  
  33. print.MouseButton1Down:connect(function()
  34. while true do
  35. wait()
  36. print("OOF")
  37. end
  38. end)
  39.  
  40. part.Name = "part"
  41. part.Parent = ScriptFrame
  42. part.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  43. part.Position = UDim2.new(0.00970873795, 0, 0.133620694, 0)
  44. part.Size = UDim2.new(0, 194, 0, 46)
  45. part.Font = Enum.Font.SourceSans
  46. part.Text = "Spam Part"
  47. part.TextColor3 = Color3.new(0, 1, 1)
  48. part.TextScaled = true
  49. part.TextSize = 14
  50. part.TextWrapped = true
  51.  
  52. part.MouseButton1Down:connect(function()
  53. while true do
  54. wait()
  55. Instance.new("Part",workspace)
  56. end
  57. end)
  58.  
  59. explosion.Name = "explosion"
  60. explosion.Parent = ScriptFrame
  61. explosion.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  62. explosion.Position = UDim2.new(0.0194174759, 0, 0.24568966, 0)
  63. explosion.Size = UDim2.new(0, 185, 0, 46)
  64. explosion.Font = Enum.Font.SourceSans
  65. explosion.Text = "Spam Explosion"
  66. explosion.TextColor3 = Color3.new(0, 1, 1)
  67. explosion.TextScaled = true
  68. explosion.TextSize = 14
  69. explosion.TextWrapped = true
  70.  
  71. explosion.MouseButton1Down:connect(function()
  72. while true do
  73. wait()
  74. Instance.new("Explosion",workspace)
  75. end
  76. end)
  77.  
  78. sit.Name = "sit"
  79. sit.Parent = ScriptFrame
  80. sit.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  81. sit.Position = UDim2.new(0.00970873795, 0, 0.357758611, 0)
  82. sit.Size = UDim2.new(0, 185, 0, 46)
  83. sit.Font = Enum.Font.SourceSans
  84. sit.Text = "Spam Sit"
  85. sit.TextColor3 = Color3.new(0, 1, 1)
  86. sit.TextScaled = true
  87. sit.TextSize = 14
  88. sit.TextWrapped = true
  89.  
  90. sit.MouseButton1Down:connect(function()
  91. while true do
  92. wait()
  93. Instance.new("Seat",workspace)
  94. end
  95. end)
  96.  
  97. vehicle.Name = "vehicle"
  98. vehicle.Parent = ScriptFrame
  99. vehicle.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  100. vehicle.Position = UDim2.new(0.0177993532, 0, 0.484913766, 0)
  101. vehicle.Size = UDim2.new(0, 185, 0, 46)
  102. vehicle.Font = Enum.Font.SourceSans
  103. vehicle.Text = "Spam Vehile Sit "
  104. vehicle.TextColor3 = Color3.new(0, 1, 1)
  105. vehicle.TextScaled = true
  106. vehicle.TextSize = 14
  107. vehicle.TextWrapped = true
  108.  
  109. vehicle.MouseButton1Down:connect(function()
  110. while true do
  111. wait()
  112. Instance.new("VehicleSeat",workspace)
  113. end
  114. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement