Can someone tell me if there is anyway I can fix the delay in this simple health bar? I know I could use Size
instead of TweenSize
but I like the Animation from TweenSize
.
wait(0.5) local player = game:GetService("Players").LocalPlayer local char = player.Character local color = script.Parent.Bar.ColorF while wait(1/500) do color:TweenSize(UDim2.new(0,3*char.Humanoid.Health,1,0),"Out","Quad",0.35) end