Trouble with local script not listening when remote event is fired?
Asked by
2 years ago Edited 2 years ago
I have two localscripts in startergui and the first one listens for when a specific part is touched it fires the remote event here's the firing script:
01 | toucher = game.Workspace.Toucher 1 |
02 | local remote = game:GetService( "ReplicatedStorage" ).RemoteEvent |
05 | toucher.Touched:Connect( function (hit) |
And here's the listener:
1 | local wall = game.workspace.Wall |
3 | game.ReplicatedStorage.RemoteEvent.OnClientEvent:Connect( function () |
4 | wall.CanCollide = false |
I dont get why the wall is not turning off cancollide