I want to be able to change a player's team on a gui button, any help? I think somebody else has same problem lol
Change the Team
property of the player upon the button click
1 | local targetTeam = game:GetService( "Teams" ) [ "Team name" ] |
2 | button.MouseButton 1 Click:Connect( function () |
3 | game:GetService( "Players" ).LocalPlayer.Team = targetTeam |
4 | end ) |
Marked as Duplicate by Avigant, GingeyLol, User#20388, Gey4Jesus69, Leamir, Le_Teapots, Vulkarin, and Programical
This question has been asked before, and already has an answer. If those answers do not fully address your question, then please ask a new question here.
Why was this question closed?