Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Reason for releasing this is because it's definitely getting patched soon, a lot of popular script's have implemented it and it's bound to happen
- --[[
- GUIDE
- Join on an alt and hold out any pet (best if it's valuable)
- Execute the script
- You will gain money as if you're selling the pet but your other account will keep the pet whilst you still earn money
- ]]
- -- SETTINGS
- local SELL_DELAY = 0.1; -- Pretty sure it's capped at 0.1 on the server
- -- Services
- local Players = game:GetService("Players");
- local ReplicatedStorage = game:GetService("ReplicatedStorage");
- local RunService = game:GetService("RunService");
- -- Variables
- local LocalPlayer = Players.LocalPlayer;
- local Sold = tick();
- -- Main
- do
- RunService.RenderStepped:Connect(function()
- if (tick() - Sold < SELL_DELAY) then
- return;
- end
- for _, Player in Players:GetChildren() do
- local Character = Player.Character;
- if (Player == LocalPlayer) or (not Character) then
- continue;
- end
- for _, Tool in Character:GetDescendants() do
- if (Tool.ClassName ~= "Tool") then
- continue;
- end
- ReplicatedStorage.GameEvents.SellPet_RE:FireServer(Tool);
- Sold = tick();
- end
- end
- end)
- end
- -- written by dementia enjoyer
- -- thanks to @relixend aswell for some extra info
- -- shoutout to solix hub, best gag script !!!
Add Comment
Please, Sign In to add comment