Hello, I haven't continued my work cause of stupid bugs. I have made a script for an admin panel which can be activated with a card. btw its a FEI: Filtering Enabled Issue.
Script:
01 | local event = game.ReplicatedStorage:WaitForChild( "AdminEvent" ) |
02 | script.Parent.Touched:Connect( function (card) |
03 | local parent = script.Parent.Parent.Parent.Admin |
04 | if card.Name = = "Admin Card" then |
05 | script.Parent.Parent.LED.BrickColor = BrickColor.new( "Bright green" ) |
06 | script.Parent.Beep:Play() |
07 | wait( 0.5 ) |
08 | script.Parent.Parent.LED.BrickColor = BrickColor.new( "Really black" ) |
09 | script.Parent.Parent.Parent.PlayerName.Value = card.Parent.Parent.Parent.Name |
10 | event:FireClient(player,card,parent) --The Problem |
11 | end |
12 | end ) |
Local Script:
1 | local event = game.ReplicatedStorage:WaitForChild( "AdminEvent" ) |
2 | event.OnClientEvent:Connect( function (card, parent) |
3 | parent.Enabled = true |
4 | end ) |
Edit Script or Explain solution :)
When you do :FireClient(player)
, the player argument is the client you want to fire. You haven't specified what "player" means in the first script, therefore it is nil, and not a player.
As for the solution, you can get the player who touched and put him in the palyer argument.