Advertisement
EmanueleBM

Ropa por Equipo

Sep 3rd, 2018
1,183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. local player = game:FindService("Players")
  2. local localPlayer = player.LocalPlayer
  3.  
  4. game.Players.PlayerAdded:Connect(function(player)
  5. player.CharacterAdded:Connect(function(character)
  6. if player.Team == game.Teams.PrimerEquipo then --Cambiar donde dice "PrimerEquipo" por el nombre de su primer equipo
  7. character:WaitForChild("Shirt").ShirtTemplate = "rbxassetid://176799778"
  8. character:WaitForChild("Pants").PantsTemplate = "rbxassetid://7825739"
  9. elseif player.Team == game.Teams.SegundoEquipo then --Cambiar donde dice "SegundoEquipo" por el nombre de su segundo equipo
  10. character:WaitForChild("Shirt").ShirtTemplate = "rbxassetid://583913905"
  11. character:WaitForChild("Pants").PantsTemplate = "rbxassetid://7825739"
  12. else
  13. end
  14. end)
  15. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement