Created by magnet#0001
Features:
- SPAM COINS
- AUTO REBIRTH
GAME LINK:
PET POSSE
SCRIPTS: [2]
local plr = game.Players.LocalPlayer
local remote = workspace.__THINGS.__REMOTES.rebirth
while task.wait(0.5) do -- high delay to prevent any possible lag from script
remote:InvokeServer(plr)
end
AUTO REBIRTH
local plr = game.Players.LocalPlayer
local things = workspace.__THINGS
local remote = things.__REMOTES.clickedButton
while task.wait() do -- no delay so it can go hella fucking fast + the script iterating over instances makes it go slow enough
local pets = {}; for i,v in pairs(things.Pets:FindFirstChild(plr.Name):GetChildren()) do
table.insert(pets, v.Name)
end
local coins = {}; for i,v in pairs(things.Coins.SpawnWorld:GetChildren()) do
for z,x in pairs(v:GetDescendants()) do
if table.find(pets, x.Name) then
table.insert(coins, v)
end
end
end
for i,v in pairs(coins) do
remote:FireServer(v.Coin, v)
end
end
SPAM COINS