Advertisement
MatLumber2

Untitled

Apr 27th, 2019
1,230
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. --Etapa 1 "Pastel brown"
  2. --Etapa 2 "Bright violet"
  3. --Etapa 3 "Moss"
  4. --Etapa 4 "Neon orange"
  5. --Etapa 5 "Ghost grey"
  6. --Etapa 6 "Pine Cone"
  7.  
  8.  
  9. _G.Active = true
  10. _G.color = "Pastel brown" --Aqui va la etapa.
  11.  
  12. while wait()do
  13. if _G.Active then
  14. for i,v in pairs(game.Workspace.Chests:GetChildren()) do
  15. pcall(function()
  16. if v.ClassName == "Model" and v.Base.BrickColor == BrickColor.new(_G.color) then
  17. game:GetService("ReplicatedStorage").Aero.AeroRemoteServices.ChestService.DisconnectPlayer:FireServer(v.Name)
  18. game:GetService("ReplicatedStorage").Aero.AeroRemoteServices.QuestService.Collect:InvokeServer("Damage")
  19. game:GetService("ReplicatedStorage").Aero.AeroRemoteServices.QuestService.Collect:InvokeServer("HatLevel")
  20. end
  21. end)
  22. end
  23. end
  24. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement