local Figure = script.Parent.SpawnLocation
local target = Vector3.new(20, 10, 20)
local Spawn = game.Workspace.SpawnLocation.Head
local Humanoid = script.Parent.Humanoid
local Health = Humanoid.Health
local Value = script.Parent.Value
local currrentHealth = Humanoid.Health
while true do
print("working")
wait(0.5)
end
And this does
while true do
print("working")
wait(0.5)
end
The Local values are for a different script but the entire script doesn’t work with them
Did you try checking the obvious things like if the script is disabled? @TheCarbyneUniverse
I think he means that the first script doesn’t print anything at all.
Hmm yeah when i comment out everything besides the print statement it works. Have i made an error in the Variables somewhere?? it doesn’t point anything out
You’ve defintely made an error in the variables. Check your output window for errors the corrolate with the script.
If you script cant find Spawnlocation, it will error, if it cant find head inside spawnlocation, it will error, if it cant find the humanoid, it will error, etc.