01 | local part = script.Parent.Touch |
02 | local part 2 = script.Parent.TouchAgain |
03 | local ReplicatedStorage = game:GetService( "ReplicatedStorage" ) |
04 | local AddValue = ReplicatedStorage.Events:WaitForChild( "AddValue" ) |
05 |
06 | part.Touched:Connect( function (Find) |
07 | local Parent = Find.Parent |
08 | local humanoid = Parent:FindFirstChildWhichIsA( "Humanoid" ) |
09 | if humanoid then |
10 |
11 | end |
12 | end ) |
everything works apart from the actual things I want it to do.
I am trying to make it so it adds
1 | player.HP.Value = player.HP.Value + 1 |
however I am doing it in a script and not in a local script and that won't be possible, how can I make it work?
:GetPlayerFromCharacter allows you to get a player from their character model. Use the following code (inside the if humanoid check):
1 | local player = game.Players:GetPlayerFromCharacter(Parent) |
2 |
3 | if player then |
4 | AddValue:FireClient(player) |
5 | end |
Hope this helped!
You can still access HP.Player.Value from the server, or a script. GetPlayerFromCharacter returns the player associated with the character that touched the part, and from there it's a simple matter of defining the path to your value.
01 | local Players = game:GetService( "Players" ) |
02 |
03 | script.Parent.Touched:Connect( function (Find) |
04 | local player = Players:GetPlayerFromCharacter(Find.Parent) |
05 | local character = player.Character or player.CharacterAdded:Wait() |
06 | local humanoid = character:FindFirstChildWhichIsA( "Humanoid" ) |
07 | if humanoid then |
08 | local HP = player:WaitForChild( "HP" ) |
09 | if HP then |
10 | HP.Value = HP.Value + 1 |
11 | print (HP.Value) |
12 | end |
13 | end ) |