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

Group rank door script?

Asked by
F_lipe 135
10 years ago

Okay so I need a part to open when a player that's in a certain group and is a certain rank and above in the group. This is what I have so far:

01door = script.Parent
02function Open()
03    door = script.Parent
04    door.CanCollide = false
05end
06 
07function Close()
08    door = script.Parent
09    door.CanCollide = true
10end
11 
12local player = get_player(part)
13if not player then return end
14 
15local allow = (
16    player:IsInGroup(1157252) and player:GetRankInGroup(1157252) >= 4)
17if allow then
18    Open()
19    delay(2, Close)
20end

I have no idea what the error is if you could help I'd really appreciate it.

0
I did just notice I think I forgot to connect my functions. F_lipe 135 — 10y

1 answer

Log in to vote
0
Answered by
Troidit 253 Moderation Voter
9 years ago

On line 12 you HAVE local player = get_player(part) but where's the function get_player(part)?

You can't tell the script to preform a function if there's no function named that.

hope this helped?

Ad

Answer this question