I really just need to know this ASAP. Here's the script:
wait(0.1) while true do script.Parent.Text = "SAVING" wait(0.5) script.Parent.Text = "SAVING." wait(0.5) script.Parent.Text = "SAVING.." wait(0.5) script.Parent.Text = "SAVING..." wait(0.5) break(10) -- ERROR: Expected 'end' (to close 'do' at line 2), got '(' end
I think this is what you we're intending...
wait(0.1) while true do script.Parent.Text = "SAVING" wait(0.5) script.Parent.Text = "SAVING." wait(0.5) script.Parent.Text = "SAVING.." wait(0.5) script.Parent.Text = "SAVING..." wait(0.5) wait(10) break end
or
wait(0.1) while wait(10) do script.Parent.Text = "SAVING" wait(0.5) script.Parent.Text = "SAVING." wait(0.5) script.Parent.Text = "SAVING.." wait(0.5) script.Parent.Text = "SAVING..." wait(0.5) break end
I don't really know what you're doing.