Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

how to change value through script?

Asked by 4 years ago
01local part = script.Parent.Touch
02local part2 = script.Parent.TouchAgain
03local ReplicatedStorage = game:GetService("ReplicatedStorage")
04local AddValue = ReplicatedStorage.Events:WaitForChild("AddValue")
05 
06part.Touched:Connect(function(Find)
07    local Parent = Find.Parent
08    local humanoid = Parent:FindFirstChildWhichIsA("Humanoid")
09    if humanoid then
10 
11    end
12end)

everything works apart from the actual things I want it to do.

I am trying to make it so it adds

1player.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?

2 answers

Log in to vote
0
Answered by
Nckripted 580 Moderation Voter
4 years ago

Please provide explanation with your answers. Simply posting code does not spread knowledge of integral scripting processes which helps people understand the logic and reasoning behind your answer.

:GetPlayerFromCharacter allows you to get a player from their character model. Use the following code (inside the if humanoid check):

1local player = game.Players:GetPlayerFromCharacter(Parent)
2 
3if player then
4    AddValue:FireClient(player)
5end

Hope this helped!

0
the check if humanoid code already works, I need help setting up the system that adds value to the value inside of the player, but I can't as its a script and not a local script. I can't access game.Players.LocalPlayer.HP.Value imerchanti 0 — 4y
0
AddValue:FireServer(number) works but only from LocalScript, how to do it from just a script? imerchanti 0 — 4y
Ad
Log in to vote
0
Answered by 4 years ago
Edited 4 years ago

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.

01local Players = game:GetService("Players")
02 
03script.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
13end)

Answer this question