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

I am about to make a break a hotel game what script should I use to make the building regen?

Asked by 10 years ago

I haven't tried any scripts yet but I dont think I can also find one please help

1 answer

Log in to vote
0
Answered by 10 years ago
local h=game.Workspace.Hotel:Clone()
while true do
wait(5*60)
game.Workspace.Hotel:remove()
wait(3)
local new=h:Clone()
new.Parent=Workspace
end

This should delete and respawn the hotel every five minutes.

0
Thank you very much but theres a faster way right? toughfrog 0 — 10y
0
I will just change the time right thanks toughfrog 0 — 10y
Ad

Answer this question