Answered by
7 years ago Edited 7 years ago
Ok lets start out by making sure we are doing this is a localscript, after that lets set up our player variable
1 | local player = game.Players.LocalPlayer |
After that we will set up our gui variables
1 | local gui = player.PlayerGui:WaitForChild( "main_Panel" ) |
2 | local warnbutton = gui:WaitForChild( "admingui" ).warn |
Now for our messages
1 | local typemessage = gui:WaitForChild( "admingui" ).typemessage |
2 | local warnmessage = gui.warnmessage |
Finally our event
1 | warnbutton.MouseButton 1 Click:connect( function () |
Lets put it together,
1 | local player = game.Players.LocalPlayer |
2 | local gui = player.PlayerGui:WaitForChild( "main_Panel" ) |
3 | local warnbutton = gui:WaitForChild( "admingui" ).warn |
4 | local typemessage = gui:WaitForChild( "admingui" ).typemessage |
5 | local warnmessage = gui.warnmessage |
6 | warnbutton.MouseButton 1 Click:connect( function () |
In conclusion to get to the player you get the LocalPlayer from players, only works in localscript. Also you don't need to use findfirstchild for everything and unique named instances