epicllllllllllllllll

sikibid

Jan 10th, 2025
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. game:GetService('RunService').Stepped:connect(function()
  2. for i, v in pairs(game:GetService("Players").LocalPlayer.Character:GetChildren()) do
  3. if v.Name == "Spray" then
  4. if v.Handle.Mesh then
  5. v.Handle.Mesh:Destroy()
  6. end
  7. v.Parent = workspace
  8. end
  9. end
  10. end)
  11. local function paint()
  12. for i, v in pairs(game:GetService("Workspace"):GetChildren()) do
  13. if v.Name == "Handle" then
  14. v.CFrame = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame
  15. v.Transparency = 1
  16. v.CanCollide = false
  17. wait()
  18. v.CFrame = game:GetService("Players").LocalPlayer.Character["Left Leg"].CFrame
  19. end
  20. end
  21. end
  22. local function equip()
  23. for i, v in pairs(game:GetService("Players").LocalPlayer.Backpack:GetChildren()) do
  24. if v.Name == "Spray" then
  25. game:GetService("Players").LocalPlayer.Character.Humanoid:EquipTool(v)
  26. end
  27. end
  28. end
  29. while wait(0.05) do
  30. paint()
  31. equip()
  32. end
Advertisement
Add Comment
Please, Sign In to add comment