Answers for "remote function unable to cast value to object roblox"

Lua
1

remote function unable to cast value to object roblox

-- server script

-- You need to specify the PLAYER that you want to fire to

local player = game:GetService("Players").PLAYERNAME
local remoteFunction = game.ReplicatedStorage.RemoteFunction
remoteFunction:InvokeClient(player, "arguments")

-- or you can fire ALL the clients 
remoteEvent:InvokeAllClients("arguments")
Posted by: Guest on January-29-2021

Code answers related to "remote function unable to cast value to object roblox"

Browse Popular Code Answers by Language