RemoteEvent is not firing?
Asked by
6 years ago Edited 6 years ago
Hello,
I am having some weird issues. My RemoteEvents are not firing in my game.
2 | local ClothesEvent = ReplicatedStorage.RemoteEvents:WaitForChild( "ClothesEvent" ) |
5 | UI.Button.MouseButton 1 Down:Connect( function () |
7 | ClothesEvent:FireServer() |
2 | local ClothesEvent = ReplicatedStorage.RemoteEvents:WaitForChild( "ClothesEvent" ) |
4 | ClothesEvent.OnServerEvent:Connect( function (player) |
5 | print ( "Clothes Event is G" ) |
So "Body" prints but the print in the Server Script does not...serious confused. No errors in output display either. Also to note, these lines work in my other game but not the current one.
Anyone know?