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:
01 | door = script.Parent |
02 | function Open() |
03 | door = script.Parent |
04 | door.CanCollide = false |
05 | end |
06 |
07 | function Close() |
08 | door = script.Parent |
09 | door.CanCollide = true |
10 | end |
11 |
12 | local player = get_player(part) |
13 | if not player then return end |
14 |
15 | local allow = ( |
16 | player:IsInGroup( 1157252 ) and player:GetRankInGroup( 1157252 ) > = 4 ) |
17 | if allow then |
18 | Open() |
19 | delay( 2 , Close) |
20 | end |
I have no idea what the error is if you could help I'd really appreciate it.
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?