Advertisement
Guest User

Untitled

a guest
Jun 24th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.93 KB | None | 0 0
  1. -- Objects
  2.  
  3. local ScreenGui = Instance.new("ScreenGui")
  4. local Frame = Instance.new("Frame")
  5. local TextLabel = Instance.new("TextLabel")
  6. local TextButton = Instance.new("TextButton")
  7. local Frame_2 = Instance.new("Frame")
  8.  
  9. -- Properties
  10.  
  11. ScreenGui.Parent = game.CoreGui
  12.  
  13. Frame.Parent = ScreenGui
  14. Frame.Active = true
  15. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  16. Frame.BorderSizePixel = 0
  17. Frame.Draggable = true
  18. Frame.Position = UDim2.new(0.596450627, 0, 0.138141811, 0)
  19. Frame.Size = UDim2.new(0, 428, 0, 176)
  20.  
  21. TextLabel.Parent = Frame
  22. TextLabel.BackgroundColor3 = Color3.new(0, 0.666667, 1)
  23. TextLabel.BorderSizePixel = 0
  24. TextLabel.Position = UDim2.new(0, 0, -0.000996880233, 0)
  25. TextLabel.Size = UDim2.new(0, 428, 0, 38)
  26. TextLabel.Font = Enum.Font.SourceSans
  27. TextLabel.Text = "WAAPP Brick Spam ~ Bloxy Cola and Azurez"
  28. TextLabel.TextSize = 20
  29.  
  30. TextButton.Parent = TextLabel
  31. TextButton.BackgroundColor3 = Color3.new(0, 0.666667, 1)
  32. TextButton.BorderSizePixel = 0
  33. TextButton.Position = UDim2.new(0.0140186911, 0, 1.76315784, 0)
  34. TextButton.Size = UDim2.new(0, 415, 0, 96)
  35. TextButton.Font = Enum.Font.SourceSansLight
  36. TextButton.Text = "Start/Stop Spam"
  37. TextButton.TextSize = 36
  38.  
  39. Frame_2.Parent = TextButton
  40. Frame_2.BackgroundColor3 = Color3.new(0, 0.568627, 0.85098)
  41. Frame_2.BorderSizePixel = 0
  42. Frame_2.Position = UDim2.new(-0.0156626496, 0, -0.834583342, 0)
  43. Frame_2.Size = UDim2.new(0, 428, 0, 13)
  44.  
  45. active = false
  46. TextButton.MouseButton1Click:connect(function()
  47. active = not active
  48. end)
  49.  
  50. spawn(function()
  51. while wait() do
  52. if active then
  53. local A_1 = "LoadAvatarAsset"
  54. local A_2 = 1492181189
  55. local Event = game:GetService("ReplicatedStorage").Channels.PlayerChannel
  56. Event:FireServer(A_1, A_2)
  57. wait(0.5)
  58. for i,v in pairs(game:GetService("Players").LocalPlayer.Character:GetDescendants()) do
  59. if v:IsA("Hat") or v:IsA("Accessory") then
  60. v.Parent = game:GetService("Workspace")
  61. v.Handle.Mesh:Destroy()
  62. end
  63. end
  64. end
  65. end
  66. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement