The text below is selected, press Ctrl+C to copy to your clipboard. (⌘+C on Mac) No line numbers will be copied.
Guest
Pet Swarm Simulator script pastebin roblox
By LINK GAME on 2024-09-19 08:00 am | Syntax: LUA | Views: 18



New Script | Raw | Show/Hide line no. | Copy text to clipboard
  1. _G.Toggle = true
  2.  
  3. while _G.Toggle do
  4.     for _, v in pairs(game.Players.LocalPlayer.Character.Pets:GetChildren()) do
  5.         if v:FindFirstChild("State").Value == "Follow" then
  6.             game:GetService("ReplicatedStorage").Remotes.Functions.CollectionRF:InvokeServer("CollectFood", game:GetService("Workspace").Zones.Zone6.FoodSpawns:FindFirstChild("Part"), v)
  7.             wait(0.5)
  8.         end
  9.     end
  10.     wait()
  11. end