Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

FireClient: player argument must be a Player object?

Asked by 5 years ago

I never used FireClient Before, so this is my first attempt. For some reason it gives me the error FireClient: player argument must be a Player object, even tho the player argument is the player.

script:

script.Parent.ClickDetector.MouseClick:Connect(function(player)
    print(player)
    game.ReplicatedStorage.RemoteEvent:FireClient(game.Players:GetPlayerFromCharacter(player),script.Parent.Parent.Name.Value)
end)
0
You know as this would be in the workspace then the client can just read the value. No remotes are needed. User#5423 17 — 5y

1 answer

Log in to vote
1
Answered by 5 years ago

The problem was that you putted the player at line 3 at game.Players:Getpltfromcharacter, the ClickDetector MouseClick function gives you the player, not its character

script.Parent.ClickDetector.MouseClick:Connect(function(player)
    print(player)
    game.ReplicatedStorage.RemoteEvent:FireClient(player,script.Parent.Parent.Name.Value)
end)
Ad

Answer this question