Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local count = 10000; --set this to whatever u want. NOTE: TURN OFF UR VOLUME BEFORE U EXECUTE OR UR EARS WILL GO DOOOODOOOO
- --dont go above 10000 or ur game will be frozen for too long
- --u can execute this as much as u want(dont spam it tho)
- for i=1, count do
- game:GetService("Players").LocalPlayer.Character.BusoEnchantment.Busoremote:FireServer();
- end
- CHEST TELEPORT
- local LP = game:GetService("Players").LocalPlayer;
- for i,v in pairs(game:GetService("Workspace"):GetChildren()) do
- if v:IsA("Folder") and string.match(v.Name, "Chest") then
- for i2,v2 in pairs(v:GetChildren()) do
- LP.Character.HumanoidRootPart.CFrame = v2.CFrame;
- wait(0.2);
- end
- end
- end
- FRUIT GRAB
- local LP = game:GetService("Players").LocalPlayer;
- for i,v in pairs(game:GetService("Workspace"):GetChildren()) do
- if v:IsA("Tool") and string.match(v.Name, "Fruit") then
- local Handle = v:FindFirstChildWhichIsA("Part");
- LP.Character.HumanoidRootPart.CFrame = Handle.CFrame;
- wait(0.2);
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement