unable to cast value to object roblox code example
Example 1: roblox unable to cast value to object
local player = game:GetService("Players").PLAYERNAME
local event = game.ReplicatedStorage.RemoteEvent
remoteEvent:FireClient(player, "arguments")
remoteEvent:FireAllClients("arguments")
Example 2: remote function unable to cast value to object roblox
local player = game:GetService("Players").PLAYERNAME
local remoteFunction = game.ReplicatedStorage.RemoteFunction
remoteFunction:InvokeClient(player, "arguments")
remoteEvent:InvokeAllClients("arguments")