So I have this Problem. I made a simple script the use loop and changes the Texts in the Textlabel. So I wondering how can I make the script continue the loop after the Player has resetted.
v = 10 while true do script.Parent.Text = "1" wait(v) script.Parent.Text = "2" wait(v) script.Parent.Text = "3" wait(v) end
If you could help I would very much appreciate it :)
This is actually much easier than you probably thought it was! Roblox has a hidden property of StarterGui called ResetPlayerGuiOnSpawn that when set to true resets the gui on spawn. If you set it to false, the gui will not reset!
game:GetService("StarterGui").ResetPlayerGuiOnSpawn = false