I'm making an event that the server sends to the client when an Administrator joins, it runs
1 | sgui: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:
01 | local remote = game.ReplicatedStorage:WaitForChild( "Remote" ).BROADCAST_ADMIN_JOIN |
02 |
03 | function 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 |
09 | end |
10 |
11 | function checkAdmin(plr) |
12 | local tier 4 = { "resupero" } |
13 | local trainer = { "AtomicMoosh" , "249Grimawesome" } |
14 | local developer = { "Skychiild" } |
15 | local commander = { "XxExtrapokemonXx" } |
Client:
1 | local remote = game.ReplicatedStorage:WaitForChild( "Remote" ).BROADCAST_ADMIN_JOIN |
2 |
3 | remote.OnClientEvent:Connect( function (plr) |
4 | print (plr.Name) |
5 | end ) |
Did I make an error somewhere in the server script?
There's a better way to go about this. Have a table with all your admin's names.
1 | local 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
1 | game.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 |
5 | end |
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.
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