Advertisement
2AreYouMental110

survive and kill the killers in area 51 get all badge givers

Oct 11th, 2021
1,341
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.70 KB | None | 0 0
  1. -- this only works in games that have the badge givers like classic
  2.  
  3. local badge = {"UltimateSecret", "HelpfulKillers", "TheWayOut", "AtomicBomb"}
  4. for i, v in pairs(game:GetService("Workspace").AREA51.Badges:GetChildren()) do
  5. for j, k in pairs(badge) do
  6. if v.Name == k then
  7. v:MoveTo(game.Players.LocalPlayer.Character.HumanoidRootPart.Position)
  8. wait()
  9. game:GetService("Workspace").AREA51.Badges.UltimateSecret.Platform.CanCollide = false
  10. game:GetService("Workspace").AREA51.Badges.HelpfulKillers.Platform.CanCollide = false
  11. game:GetService("Workspace").AREA51.Badges.TheWayOut.Platform.CanCollide = false
  12. game:GetService("Workspace").AREA51.Badges.AtomicBomb.Platform.CanCollide = false
  13. end
  14. end
  15. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement