Advertisement
Guest User

ABCU

a guest
Jul 18th, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. warn('---')--
  2. print('---------------')
  3. for i,v in pairs (game.Players:GetChildren()) do
  4. print('---- '..v.Name..'----')
  5. print('Name: '..v.Data.PhoneticName.Value)
  6. print('Job: '..v.Data.GameTeam.Value)
  7. print('Karma: '..v.Data.Karma.Value)
  8. if v.Character and v.Character.Humanoid.Health > 0 then
  9. print('Status: Alive')
  10. else
  11. print('Status: Dead')
  12. end
  13. if v.Data.GameTeam.Value == "Traitor" then
  14. warn(' - - - - - - - - - - - - ')
  15. warn(v.Name.. ' | '..v.Data.PhoneticName.Value..'; This user is a terrorist!')
  16. warn(' - - - - - - - - - - - - ')
  17. end
  18. print('----')
  19. end
  20. print('---------------')
  21. warn('---')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement