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

Is there a reason why my hearts are not changing?

Asked by
Joshument 110
5 years ago
Edited 5 years ago
01local Player = game.Players.LocalPlayer
02local Character = Player.Character
03local Humanoid = Character:WaitForChild("Humanoid")
04local Store = game.ReplicatedStorage
05 
06local HeartContainers = Character.HealthSetter.HeartContainers
07local Health = Humanoid.Health
08 
09local renderstep = game:GetService("RunService").RenderStepped
10 
11renderstep:Connect(function()
12 
13    local Loaded = 1
14    for i = 1, HeartContainers.Value do
15        if Loaded < 11 then
View all 58 lines...

For some reason the new hearts I have display as a full heart (as they should) but none of the hearts seem to update. I've tried to troubleshoot but end up breaking it and no heart decals appear at all. Sorry for the flood lol

0
line 46 User#24403 69 — 5y
0
what about it ? Joshument 110 — 5y

Answer this question