Instead of using a remote event to transfer a signal from a local script to script, is it possible to transfer a signal across a script to a local script?
How would I do this?
1 | --Script |
2 | local Event = script.Parent.RemoteEvent |
3 | Event:FireServer() |
4 |
5 | --Local script |
6 | function signal() |
7 |
8 | end |
9 | Event.OnServerEvent:Connect(signal) |
Yes. To transfer from script to localScript you use a method known as 'FireClient()".
Code(script):
1 | game:GetService( "ReplicatedStorage" ).RemoteEvent:FireClient(plr) |
Code(localScript):
1 | game:GetService( "ReplicatedStorage" ).RemoteEvent.OnClientEvent:Connect( function (plr) |
2 | print ( "fired" ) |
3 | end ) |
This is how you would fire a signal from a script to a localscript.
Links that will help you:
ROBLOX Remote Event tutorial (Everything you need to know)
and
Roblox Filtering Enabled Tutorial - RemoteEvents (Part 1)
Your welcome :)