Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How do I make a door than only opens to a a certain group rank?

Asked by 11 years ago

How do I make a door than only opens to a a certain group rank (or more than one rank for a group)?

1 answer

Log in to vote
2
Answered by
Bebee2 195
11 years ago

Key methods: Game.Players:GetPlayerFromCharacter Player:IsInGroup Player:GetRoleInGroup

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

Answer this question