Advertisement
VincentYee

Brick Spammer

May 14th, 2023 (edited)
843
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.20 KB | None | 0 0
  1. --Name      @BrickSpammer6000
  2. --Author    @NaN
  3. --Created   @May 14th 2023 (9:36:36 PM)
  4. -------------------------------------------------------------------
  5. local game = game
  6. local workspace = workspace
  7. local NaN
  8.  
  9. local waittick, a, b, c, d, e, f, g
  10. -------------------------------------------------------------------
  11. --https://www.roblox.com/games/12109643/Fencing
  12. game:GetService('RunService').Stepped:connect(function()
  13.     for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  14.         if v.Name == "Spray" then
  15.             if v.Handle.Mesh then
  16.                 v.Handle.Mesh:Destroy()
  17.             end
  18.             v.Parent = workspace
  19.         end
  20.     end
  21. end)
  22.  
  23. local function paint()
  24.     for i,v in pairs(game.Workspace:GetChildren())do
  25.         if v.Name == "Handle" then
  26.             v.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  27.             v.Transparency = 1
  28.             v.CanCollide = false
  29.             wait()
  30.             v.CFrame = game.Players.LocalPlayer.Character["Left Leg"].CFrame
  31.         end
  32.     end
  33. end
  34.  
  35. local function equip()
  36.     for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren())do
  37.         if v.Name == "Spray" then
  38.             game.Players.LocalPlayer.Character.Humanoid:EquipTool(v)
  39.         end
  40.     end
  41. end
  42.  
  43. --while wait(0.05) do
  44. while wait(NaN) do
  45.     paint()
  46.     equip()
  47. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement