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

RemoteEvent:FireClient() Player Object always returns nil?

Asked by 5 years ago

I'm making an event that the server sends to the client when an Administrator joins, it runs

1sgui:SetCore("SendNotification",{
2 all the notification stuff goes in here
3}

But when testing, every time on the Client side, Player is returning nill

Server:

01local remote = game.ReplicatedStorage:WaitForChild("Remote").BROADCAST_ADMIN_JOIN
02 
03function fireIfAdmin(tbl, plr)
04    for i,v in pairs(tbl) do
05        if plr.Name == v then
06            remote:FireClient(plr)
07        end
08    end
09end
10 
11function checkAdmin(plr)
12    local tier4 = {"resupero"}
13    local trainer = {"AtomicMoosh", "249Grimawesome"}
14    local developer = {"Skychiild"}
15    local commander = {"XxExtrapokemonXx"}
View all 30 lines...

Client:

1local remote = game.ReplicatedStorage:WaitForChild("Remote").BROADCAST_ADMIN_JOIN
2 
3remote.OnClientEvent:Connect(function(plr)
4    print(plr.Name)
5end)

Did I make an error somewhere in the server script?

2 answers

Log in to vote
0
Answered by 5 years ago
Edited 5 years ago

There's a better way to go about this. Have a table with all your admin's names.

1local Admins = {['PlayerName'] = true,} --Put all admin names here in this format

To check if a player is an admin when they join, then you can simply do

1game.Players.PlayerAdded:Connect(function(Player)
2    if Admins[Player.Name] then
3        --Fire your client event here with the actual Player object as the argument
4    end
5end

Also, when calling InvokeClient, you must specify to which player you are calling it to, which means it needs two argument inputs if the recieving OnClientInvoke has an argument. In your case, it's plr, which is equal to nothing, since you're using InvokeClient and specifying which player you're sending it to, but not actually giving the 2nd argument a value. To fix that you could just put in plr twice for the arguments.

Although the method above is a lot easier.

Hope this helps.

0
Passing it twice worked! Thank you! Skychiild 4 — 5y
Ad
Log in to vote
0
Answered by 5 years ago

I dont know much about lua on roblox etc but i think you have to do the client script after the player loads not before, i dont remember exactly how to do it but a little searching should do

Answer this question