Advertisement
SwaggerTv

Pro Piece Script

May 30th, 2021
1,380
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1. local count = 10000; --set this to whatever u want. NOTE: TURN OFF UR VOLUME BEFORE U EXECUTE OR UR EARS WILL GO DOOOODOOOO
  2.  
  3. --dont go above 10000 or ur game will be frozen for too long
  4.  
  5. --u can execute this as much as u want(dont spam it tho)
  6.  
  7. for i=1, count do
  8.  
  9. game:GetService("Players").LocalPlayer.Character.BusoEnchantment.Busoremote:FireServer();
  10.  
  11. end
  12.  
  13.  
  14. CHEST TELEPORT
  15. local LP = game:GetService("Players").LocalPlayer;
  16.  
  17. for i,v in pairs(game:GetService("Workspace"):GetChildren()) do
  18.  
  19. if v:IsA("Folder") and string.match(v.Name, "Chest") then
  20.  
  21. for i2,v2 in pairs(v:GetChildren()) do
  22.  
  23. LP.Character.HumanoidRootPart.CFrame = v2.CFrame;
  24.  
  25. wait(0.2);
  26.  
  27. end
  28.  
  29. end
  30. end
  31.  
  32.  
  33. FRUIT GRAB
  34.  
  35. local LP = game:GetService("Players").LocalPlayer;
  36.  
  37. for i,v in pairs(game:GetService("Workspace"):GetChildren()) do
  38.  
  39. if v:IsA("Tool") and string.match(v.Name, "Fruit") then
  40.  
  41. local Handle = v:FindFirstChildWhichIsA("Part");
  42.  
  43. LP.Character.HumanoidRootPart.CFrame = Handle.CFrame;
  44.  
  45. wait(0.2);
  46.  
  47. end
  48. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement