Answered by
5 years ago Edited 5 years ago
If you are using a LocalScript inside of the button you can do it this way:
1) Put a RemoteEvent in ReplicatedStorage
2) Put a ServerScript in ServerScriptService
3) Put a LocalScript inside the button
Code:
LocalScript
1 | local event = game:GetService( "ReplicatedStorage" ):WaitForChild( "RemoteEvent" ) |
3 | script.Parent.MouseButton 1 Click:Connect( function () |
4 | local teamName = "Civillian" |
5 | event:FireServer(teamName) |
Here, we are getting the RemoteEvent, and once the button is pressed it fires the server with 2 arguments, the player (automatically the first argument) and the Team Name.
ServerScript
01 | local event = game:GetService( "ReplicatedStorage" ):WaitForChild( "RemoteEvent" ) |
03 | event.OnServerEvent:Connect( function (player,teamName) |
04 | local character = player.Character or player.CharacterAdded:Wait() |
07 | player.TeamColor = game:GetService( "Teams" ):FindFirstChild(teamName).TeamColor |
09 | player:LoadCharacter() |
Here we are getting the RemoteEvent, and when the server is fired and it connects the arguments of the player and the team name, it will check if the player has a character, and if it does then it will change their team and respawn them.
Now there's a different way, you can use a ServerScript inside the button, like this.
ServerScript
01 | script.Parent.MouseButton 1 Click:Connect( function (player) |
02 | local player = script.Parent.Parent.Parent.Parent |
03 | local character = player.Character or player.CharacterAdded:Wait() |
06 | player.TeamColor = game:GetService( "Teams" ):FindFirstChild( "Enter Team Name Here" ).TeamColor |
08 | player:LoadCharacter() |
Here, we are getting the player through PlayerGui, a child of the Player. After that, we're checking if the player has a character, if so then we will change their team and respawn them.
My opinion in this would be the first one using RemoteEvents, just because it's less of a hassle.
Hope this helped!
If this is what you're looking for, don't forget to select this as the answer to your question!
~killerbrenden