Why isnt the door opening?
Hello there! I'm making a game and I need to make a door that is whitelisted so only people over the guest and cadet rank can open and close it. My game is filtering enabled and has to switch back and forth from the client and the server. I learned this month about remote events/remote functions (except I don't know much about remote functions) and tried to use them in this.
But it's not working. I tried to fix it but on line 10 on the open script it gives me this error
Argument 1 missing or nil
Can anyone help me?
Here are the scripts and parts.
Scripts:
Type of script = Script, Name of script = Open:
01 | local CD = script.Parent.ClickDetector |
02 | local RS = game:GetService( "ReplicatedStorage" ) |
03 | local RE = RS.RemoteEvents |
07 | if script.Parent.ClickDetector.MouseClick then |
08 | if Debounce = = false then |
10 | RE.DoorAClickCheck:FireClient() |
15 | RE.DoorAOpen.OnServerEvent:Connect( function () |
16 | if script.Parent.OpenValue = = false then |
17 | script.Parent.Transparency = 0.5 |
18 | script.Parent.CanCollide = false |
20 | if script.Parent.OpenValue = = true then |
21 | script.Parent.Transparency = 0 |
22 | script.Parent.CanCollide = true |
Type of script = LocalScript, Name of script = LocalOpen:
01 | local CD = script.Parent.ClickDetector |
02 | local RS = game:GetService( "ReplicatedStorage" ) |
03 | local RE = RS.RemoteEvents |
04 | local Player = game.Players.LocalPlayer |
06 | RE.DoorAClickCheck.OnClientEvent:Connect( function () |
07 | if Player.leaderstats.Rank = = "Guest" or "Cadet" then |
08 | print ( "Rejected: Not Over Rank 2" ) |
10 | RE.DoorAOpen:FireServer() |
Remote events (These are in replicated storage and are both remote events. {I also have these duplicated but it is DoorB because I'm making another one of these doors.}) :
DoorAClickCheck and DoorAOpen
Parts:
DoorA
Inside of DoorA: ClickDetector, Open, OpenValue, And LocalOpen
Thanks for reading and or helping me,
Narwhal