Hello! I've been very confused of this :FireClient(). I've tryed it myself, and this is the code:
1 | script.Parent.Touched:Connect( function (hit) |
2 | if hit.Parent:FindFirstChild( "Humanoid" ) then |
3 | game.ReplicatedStorage.ShowCodeGUI:FireClient() |
4 | end |
5 | end ) |
After running and testing, I've got this error:
Argument 1 missing or nil
Need explanations please! Thank you.
You need to inser player in the FireClient(), so please replace your script to this:
1 | game.Players.PlayerAdded:Connect( function (player) |
2 | script.Parent.Touched:Connect( function (hit) |
3 | if hit.Parent:FindFirstChild( "Humanoid" ) then |
4 | game.ReplicatedStorage.ShowCodeGUI:FireClient(player) |
5 | end |
6 | end ) |
7 | end ) |
This should work.
Like the other comment by Gabe, You have to specify a player. It says "argument one missing" because the argument one should be the player your trying to send an input to!
This doesn't apply to :FireAllClients(), arguments are not necessary since it sends the fire info to each person.
Also, for something to happen when you fire the client, you have to add a .OnClientEvent function (heres an example:)
1 | local remote = game.ReplicatedStorage.ShowCodeGUI |
2 | remote.OnClientEvent:Connect( function (arguments from server) |
3 | print ( 'client has been fired!!' ) |
4 | end ) |
obviously you'd change "arguments from server" and the code inside the function, but you should get the idea.