Advertisement
vibrantsinger423

gtrwgh

Aug 11th, 2019
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.76 KB | None | 0 0
  1. local ScreenGui = Instance.new("ScreenGui")
  2. local Frame = Instance.new("Frame")
  3. local Credits = Instance.new("TextLabel")
  4. local Toogle = Instance.new("TextButton")
  5. local TextLabel = Instance.new("TextLabel")
  6. local Amount = Instance.new("TextBox")
  7. --Properties:
  8. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  9.  
  10. Frame.Parent = ScreenGui
  11. Frame.Active = true
  12. Frame.BackgroundColor3 = Color3.new(0.207843, 0.317647, 0.360784)
  13. Frame.BackgroundTransparency = 0.25
  14. Frame.BorderSizePixel = 3
  15. Frame.Position = UDim2.new(0.808669567, 0, 0.750553906, 0)
  16. Frame.Size = UDim2.new(0, 208, 0, 131)
  17.  
  18. Credits.Name = "Credits"
  19. Credits.Parent = Frame
  20. Credits.BackgroundColor3 = Color3.new(1, 1, 1)
  21. Credits.BackgroundTransparency = 1
  22. Credits.Position = UDim2.new(0.0192308426, 0, 0.0946408212, 0)
  23. Credits.Size = UDim2.new(0, 200, 0, 50)
  24. Credits.Font = Enum.Font.Highway
  25. Credits.Text = "By Jxl"
  26. Credits.TextColor3 = Color3.new(0, 0, 0)
  27. Credits.TextSize = 14
  28.  
  29. Toogle.Name = "Toogle"
  30. Toogle.Parent = Frame
  31. Toogle.Active = false
  32. Toogle.BackgroundColor3 = Color3.new(1, 1, 1)
  33. Toogle.BackgroundTransparency = 0.54000002145767
  34. Toogle.Position = UDim2.new(0.0480769202, 0, 0.475588828, 0)
  35. Toogle.Size = UDim2.new(0, 88, 0, 50)
  36. Toogle.Font = Enum.Font.SourceSans
  37. Toogle.Text = "Start Spam"
  38. Toogle.TextColor3 = Color3.new(0, 0, 0)
  39. Toogle.TextSize = 14
  40.  
  41. TextLabel.Parent = Frame
  42. TextLabel.BackgroundColor3 = Color3.new(0.188235, 0.396078, 0.533333)
  43. TextLabel.Size = UDim2.new(0, 208, 0, 13)
  44. TextLabel.Font = Enum.Font.SourceSans
  45. TextLabel.Text = "FE Spam Blocks Hax"
  46. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  47. TextLabel.TextSize = 14
  48.  
  49. Amount.Name = "Amount"
  50. Amount.Parent = Frame
  51. Amount.BackgroundColor3 = Color3.new(1, 1, 1)
  52. Amount.BackgroundTransparency = 0.54000002145767
  53. Amount.Position = UDim2.new(0.557692289, 0, 0.58015269, 0)
  54. Amount.Size = UDim2.new(0, 88, 0, 21)
  55. Amount.Font = Enum.Font.SourceSans
  56. Amount.Text = "Amount"
  57. Amount.TextColor3 = Color3.new(0, 0, 0)
  58. Amount.TextSize = 14
  59. -- Scripts:
  60. function gay()
  61. getfenv().script = Instance.new('LocalScript', ScreenGui)
  62.  
  63. for _,v in ipairs(script.Parent:GetDescendants()) do
  64. if not v:IsA("LocalScript") then
  65. v.Draggable = true
  66. end
  67. end
  68.  
  69. end
  70. coroutine.resume(coroutine.create(gay))
  71.  
  72. Toogle.MouseButton1Click:connect(function()
  73. for i = 1, Amount.Text do
  74. local arg =
  75. {
  76. [1] = "Wear",
  77. [2] = "15857936",
  78. [3] = "Hats"
  79. }
  80. local Event = game:GetService("ReplicatedStorage").WearItem
  81. Event:FireServer(arg)
  82. wait(0.001)
  83. for index, child in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  84. if child.ClassName == "Hat" or child.ClassName == "Accessory" then
  85. if child.Handle:FindFirstChild("Mesh") then
  86. child.Handle.Mesh.Parent = nil
  87. child.Parent = game.Workspace
  88. end
  89. end
  90. end
  91. end
  92. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement