I want to make something like a remote event, but that goes from a server script to a local one, is that possible?
Yes. Use a RemoteEvent and fire it using RemoteEvent:FireAllClients(agrs)
.
1 Like
Remote events can go from local script to server script and server script to local script.
2 Likes
RemoteEvent:FireClient (roblox.com) ( this will fire a specific client, do fireallclients to fire everyones client )
2 Likes
Also when you are firing only one client, first argument must be client you want to fire event on.
1 Like