Advertisement
Owen007

Untitled

Jun 9th, 2022
625
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. _G.AutoCrateee = true
  2. local crates = {
  3. "Basic Crate",
  4. "Exotic Crate",
  5. "Rare Crate",}
  6. function AntiLag()
  7. local a = game:GetService("Workspace").Camera
  8. while wait() do
  9. for i,v in pairs(a:GetChildren()) do
  10. v:Destroy()
  11. end
  12. end
  13. end
  14. function AutoCrate()
  15. while wait() and _G.AutoCrateee do
  16. for _,v in next, crates do
  17. game:GetService("ReplicatedStorage").Events.OpenCrate:FireServer(v)
  18. end
  19. end
  20. end
  21. AutoCrate()
  22. AntiLag()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement