Hi, i try to set Health of my model but it’s not work, i got this error: DataStore request was added to queue. If request queue fills, further requests will be dropped. Try sending fewer requests.Key = 514878419
my script:
local model = script.Parent:FindFirstChild("Humanoid")
while wait(10) do
if model.Health <= 1 then
model.Health = model.MaxHealth
end
end
I have the same script in an other model and it’s working… i don’t understand
This script is laid out so the humanoid’s health will be reset to 100 once it reaches 0 (with up to a 10 second delay), and I don’t really see any issues with the code. Can you show screenshots of the explorer tree containing the two models?