Advertisement
Guest User

scriptforcore

a guest
Dec 20th, 2014
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. local TeamAppearances = {Judges = "72541317"}
  2.  
  3. local TeamBaseURL = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId="
  4.  
  5. local Player = script.Parent.Parent
  6.  
  7. for _, team in pairs(game.Teams:GetTeams()) do
  8. if (Player.TeamColor.Name == team.TeamColor.Name) then
  9. local teamAppearance = TeamAppearances[team.Name]
  10. if teamAppearance then
  11. Player.CharacterAppearance = TeamBaseURL .. teamAppearance
  12. end
  13. end
  14. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement