If you have a button with a CLickDetector, and you only want rank+ or team only, or something to use it, how do I find the player from the click to check if the person is rank+, team, etc?
I know I need something like this...
1 | script.Parent.ClickDetector.MouseClick:connect( function () |
2 | --*something to find the player* |
3 | if Player.TeamColor = = BrickColor.new( "Really red" ) then |
4 | script.Parent:Remove() |
5 | end |
6 | end ) |
All you need to edit is :
1 | script.Parent.ClickDetector.MouseClick:connect( function (Player) --The Player is already there the MouseClick function actually gets the player, you just needed to add in the parameter for them. |
2 | --You don't need anything to find the player, but verifying them would be good. |
3 | if game.Players:FindFirstChild(Player.Name) then |
4 | if Player.TeamColor = = BrickColor.new( "Really red" ) then |
5 | script.Parent.remove() |
6 | end |
7 | end |
8 | end ) |
Hope that helped.
I don't understand what you mean by "find," so this is the closest I can think of.
1 | script.Parent.ClickDetector.MouseClick:connect( function (Player) |
2 | if Player:GetRankInGroup(GROUPID) > = RANKNUMBER and Player.TeamColor = = BrickColor.new( "Really red" ) then |
3 | print (Player.Name.. "clicked the button" ) |
4 | script.Parent:Remove() |
5 | end |
6 | end ) |