I seen regen buttons that regen carts, models, etc. I don't know how to make one of these. Anyone have any suggestions?
Deb = false Model = YourModel:Clone() Model.Parent = game.Lighting function Regen(hit) Hum = hit.Parent:FindFirstChild("Humanoid") if Hum and Deb == false then Model:Clone().Parent = game.Workspace Deb = true wait(1) Deb = false end end script.Parent.Touched:connect(Regen)