How to call a RemoteFunction to the Client with a ClickDetector?
I've been trying to call a brick inside of the Workspace to display a GUI on the character with RemoteFunction
and FilteringEnabled
. I've been attempting to find a way, but I haven't. I also tried RemoteEvent
, but I might've not used them correctly either. Is there a way I can get these scripts to work with one of those? I have a RemoteFunction named 'Opened_Shop' inside of ReplicatedStorage
. Please help?
A regular Inside a part in the Workspace with a ClickDetector:
1 | local clickDetector = script.Parent.ClickDetector |
3 | clickDetector.MouseClick:connect( function (player) |
4 | function game.ReplicatedStorage.Opened_Shop.ClientInvoke(player) |
Local script inside the Client's Gui with a Frame:
1 | function game.ReplicatedStorage.Opened_Shop.OnClientInvoke(player) |
2 | script.Parent.ShopGui.Options:TweenPosition(UDim 2. new( 0.5 ,- 200 , 0.5 ,- 200 ), Out, "Sine" , 1 , false ) |