How Can I Share Variables With Remote Events?
Asked by
5 years ago Edited 5 years ago
Okay, I'm still learning a lot so please dont be mad. So im trying to pass a variable from a local script with a remote event to a server script. Heres an example:
1 | game.ReplicatedStorage.givemoney:FireServer(hitHumanoid) |
Server script:
1 | game.ReplicatedStorage.givemoney.OnServerEvent:Connect( function (hitHumanoid) |
2 | if hitHumanoid.Health < = 0 then |
3 | hitHumanoid.Parent.creator.Value = "example.." |
**The problem is that the variable hit Humanoid will mark the player instead of that variable.
*14:13:43.298 - Health is not a valid member of Player
Does anyone know how to fix it?***