Advertisement
93mkjw83h9

Untitled

Aug 14th, 2022
9,011
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | Cryptocurrency | 1 0
  1. local user = game.Players.LocalPlayer
  2. local RandomWait = { 0.1, 5e-3 }
  3. for i, v in pairs(game.Workspace.Provinces:GetChildren()) do
  4. task.spawn(function()
  5. while wait(RandomWait[math.random(2)]) do
  6. if not user.Character:FindFirstChild"PaintBucket" then user.Backpack.PaintBucket.Parent = user.Character end
  7. local args = {
  8. [1] = "PaintPart",
  9. [2] = {
  10. ["Part"] = v,
  11. ["Color"] = Color3.fromHSV(tick() % math.random(3, 5) / math.random(3, 5), 1, 1)
  12. }
  13. }
  14. user.Character.PaintBucket.Remotes.ServerControls:InvokeServer(unpack(args))
  15. end
  16. end)
  17. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement