Advertisement
Jxjxjx1

Sprayspam

Mar 14th, 2022
8,150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.26 KB | None | 0 0
  1. local ScreenGui = Instance.new("ScreenGui")
  2. local main = Instance.new("Frame")
  3. local title = Instance.new("TextLabel")
  4. local Spam = Instance.new("TextButton")
  5. local close = Instance.new("TextButton")
  6. local openmain = Instance.new("Frame")
  7. local open = Instance.new("TextButton")
  8.  
  9.  
  10. ScreenGui.Parent = game.CoreGui
  11.  
  12. main.Name = "main"
  13. main.Parent = ScreenGui
  14. main.BackgroundColor3 = Color3.new(34,139,34)
  15. main.Position = UDim2.new(0.0203577988, 0, 0.641277611, 0)
  16. main.Size = UDim2.new(0, 332, 0, 211)
  17. main.Visible = false
  18. main.Active = true
  19. main.Draggable = true
  20.  
  21. title.Name = "title"
  22. title.Parent = main
  23. title.BackgroundColor3 = Color3.new(0, 0, 0)
  24. title.Size = UDim2.new(0, 332, 0, 31)
  25. title.Font = Enum.Font.GothamBold
  26. title.Text = "SpraySpam Gui Script By: Balli"
  27. title.TextColor3 = Color3.new(1, 1, 1)
  28. title.TextSize = 17
  29.  
  30. Spam.Name = "Spam"
  31. Spam.Parent = main
  32. Spam.BackgroundColor3 = Color3.new(0, 0, 0)
  33. Spam.Position = UDim2.new(0.363293529, 0, 0.28638497, 0)
  34. Spam.Size = UDim2.new(0, 110, 0, 50)
  35. Spam.Font = Enum.Font.GothamBold
  36. Spam.Text = "Spam"
  37. Spam.TextColor3 = Color3.new(1, 1, 1)
  38. Spam.TextScaled = true
  39. Spam.TextSize = 10
  40. Spam.TextWrapped = true
  41. Spam.MouseButton1Down:connect(function()
  42. wait(1)
  43. game.StarterGui:SetCore("SendNotification", {
  44. Title = "Subscribe to Nyaha Gaming";
  45. Text = "Executed.!";
  46. })
  47.  
  48. game:GetService('RunService').Stepped:connect(function()
  49. for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  50. if v.Name == "Spray" then
  51. if v.Handle.Mesh then
  52. v.Handle.Mesh:Destroy()
  53. end
  54. v.Parent = workspace
  55. end
  56. end
  57. end)
  58. local function paint()
  59. for i,v in pairs(game.Workspace:GetChildren())do
  60. if v.Name == "Handle" then
  61. v.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  62. v.Transparency = 1
  63. v.CanCollide = false
  64. wait()
  65. v.CFrame = game.Players.LocalPlayer.Character["Left Leg"].CFrame
  66. end
  67. end
  68. end
  69. local function equip()
  70. for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren())do
  71. if v.Name == "Spray" then
  72. game.Players.LocalPlayer.Character.Humanoid:EquipTool(v)
  73. end
  74. end
  75. end
  76. while wait(0.05) do
  77. paint()
  78. equip()
  79. end
  80. end)
  81.  
  82.  
  83. close.Name = "close"
  84. close.Parent = main
  85. close.BackgroundColor3 = Color3.new(0, 0, 0)
  86. close.Position = UDim2.new(0.879518092, 0, 0, 0)
  87. close.Size = UDim2.new(0, 40, 0, 31)
  88. close.Font = Enum.Font.GothamBlack
  89. close.Text = "Close"
  90. close.TextColor3 = Color3.new(1, 1, 1)
  91. close.TextScaled = true
  92. close.TextSize = 14
  93. close.TextWrapped = true
  94. close.MouseButton1Down:connect(function()
  95. main.Visible = false
  96. openmain.Visible = true
  97. end)
  98.  
  99. openmain.Name = "openmain"
  100. openmain.Parent = ScreenGui
  101. openmain.BackgroundColor3 = Color3.new(0, 0, 1)
  102. openmain.Position = UDim2.new(.001, 0, .79, 0)
  103. openmain.Size = UDim2.new(0, 100, 0, 28)
  104. openmain.Active = true
  105. openmain.Draggable = true
  106.  
  107. open.Name = "open"
  108. open.Parent = openmain
  109. open.BackgroundColor3 = Color3.new(0, 0, 0)
  110. open.Size = UDim2.new(0, 100, 0, 28)
  111. open.Font = Enum.Font.GothamBold
  112. open.Text = "OPEN"
  113. open.TextColor3 = Color3.new(1, 1, 1)
  114. open.TextSize = 18
  115. open.TextWrapped = true
  116. open.MouseButton1Down:connect(function()
  117. openmain.Visible = false
  118. main.Visible = true
  119. end)
  120.  
  121. wait(1)
  122. game.StarterGui:SetCore("SendNotification", {
  123. Title = "Made By Balligusapo";
  124. Text = "Have Fun Exploiting!";
  125. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement