Advertisement
Migas3456

Beauteous Mall Block Spam GUI

Apr 13th, 2018
345
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.24 KB | None | 0 0
  1. --this was supposed to be for city life but i've found this game that hasnt an anti block spam so ye
  2. -- Objects
  3.  
  4. local BeauteousMallhaxslol = Instance.new("ScreenGui")
  5. local MainFrame = Instance.new("Frame")
  6. local a = Instance.new("TextLabel")
  7. local Number = Instance.new("TextBox")
  8. local Execute = Instance.new("TextButton")
  9.  
  10. -- Properties
  11.  
  12. BeauteousMallhaxslol.Name = "BeauteousMallhaxslol"
  13. if game.PlaceId == "843495510,843468296" then
  14. BeauteousMallhaxslol.Parent = game.Players.LocalPlayer.PlayerGui
  15. BeauteousMallhaxslol.ResetOnSpawn = false
  16. else
  17. BeauteousMallhaxslol.Parent = game.CoreGui
  18. end
  19.  
  20. MainFrame.Name = "MainFrame"
  21. MainFrame.Parent = BeauteousMallhaxslol
  22. MainFrame.Active = true
  23. MainFrame.BackgroundColor3 = Color3.new(1, 1, 0)
  24. MainFrame.Draggable = true
  25. MainFrame.Position = UDim2.new(0, 180, 0, 299)
  26. MainFrame.Size = UDim2.new(0, 371, 0, 220)
  27.  
  28. a.Name = "a"
  29. a.Parent = MainFrame
  30. a.BackgroundColor3 = Color3.new(1, 1, 0)
  31. a.Size = UDim2.new(0, 371, 0, 50)
  32. a.Font = Enum.Font.SourceSans
  33. a.Text = "Spam Blocks For Beauteous Mall By Migas3456#6402"
  34. a.TextScaled = true
  35. a.TextSize = 14
  36. a.TextWrapped = true
  37.  
  38. Number.Name = "Number"
  39. Number.Parent = MainFrame
  40. Number.BackgroundColor3 = Color3.new(1, 1, 0)
  41. Number.Position = UDim2.new(0, 86, 0, 76)
  42. Number.Size = UDim2.new(0, 200, 0, 50)
  43. Number.Font = Enum.Font.SourceSans
  44. Number.Text = "Number of Blocks"
  45. Number.TextScaled = true
  46. Number.TextSize = 14
  47. Number.TextWrapped = true
  48.  
  49. Execute.Name = "Execute"
  50. Execute.Parent = MainFrame
  51. Execute.BackgroundColor3 = Color3.new(1, 1, 0)
  52. Execute.Position = UDim2.new(0, 86, 0, 153)
  53. Execute.Size = UDim2.new(0, 200, 0, 50)
  54. Execute.Font = Enum.Font.SourceSans
  55. Execute.Text = "Spam Blocks"
  56. Execute.TextScaled = true
  57. Execute.TextSize = 14
  58. Execute.TextWrapped = true
  59. Execute.MouseButton1Down:connect(function()
  60. local value = Number.Text
  61. for i=1,value do
  62. print(i)
  63. game:GetService'ReplicatedStorage'.ITEM_PURCHASE:InvokeServer('meme', '8', '158066212')
  64. wait(0.1)
  65. for index, child in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  66. if child.ClassName == "Hat" or child.ClassName == "Accessory" then
  67. if child.Handle:FindFirstChild("Mesh") then
  68. child.Handle.Mesh:Destroy()
  69. end
  70. child.Parent = game.Workspace
  71. end
  72. end
  73. end
  74. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement