I’m trying to fire a RemoteEvent called “RightEvent” inside “playerblock”, which is in the “PlayerStuff” folder.
And I’m trying to fire it from a LocalScript in a ScreenGUI:
This LocalScript says:
if script.Parent.MouseButton1Click then
workspace.PlayerStuff.playerblock.DownEvent:FireServer()
end
However, when I test the game, output shows “playerblock is not a valid member of Folder “Workspace.PlayerStuff” - Client - RightEvent:2”.
I am aware that this might be something related to me using LocalScripts and Scripts randomly, but I don’t know much about RemoteEvents. Thanks in advance!