How do I make a door than only opens to a a certain group rank (or more than one rank for a group)?
Key methods: Game.Players:GetPlayerFromCharacter Player:IsInGroup Player:GetRoleInGroup
01 | local groupid = 9000001 -- Id of your group |
02 | local door = script.Parent -- Replace this to the path of the door |
03 | door.Touched:connect( function (part) |
04 | local plr = game.Players:GetPlayerFromCharacter(part.Parent) |
05 | if plr then |
06 | if plr:IsInGroup(groupid) then |
07 | if plr:GetRoleInGroup(groupId) > = 50 then -- replace with minimal rank to open door |
08 | if not debounce then debounce = true -- Let's try not to do something we will regret. |
09 | door.Transparency = 0.5 |
10 | door.CanCollide = false |
11 | wait( 1 ) |
12 | door.Transparency = 0 |
13 | door.CanCollide = true |
14 | debounce = nil |
15 | end |
16 | end |
17 | end |
18 | end |
19 | end ) |