Loading "TextLabel" Problem

You can write your topic however you want, but you need to answer these questions:

  1. What do you want to achieve? Keep it simple and clear!

I want the text “Loading .” to “Loading . .” but not work (I added repeat command still not work)

  1. What is the issue? Include screenshots / videos if possible!

robloxapp-20230306-0908122.wmv (255.5 KB)

As you can see in the video, when it’s almost complete the loading starts to work idk why

  1. What solutions have you tried so far?

I added things that loop until it reaches it’s point

After that, you should include more details if you have any. Try to make your topic as descriptive as possible, so that it’s easier for people to help you!

repeat
script:WaitForChild("Value").Value += 1
task.wait(.2)
until script:WaitForChild("Value").Value == 100	

repeat
	script.Parent.Text = "LOADING."
	task.wait(.3)
	script.Parent.Text = "LOADING. ."
	task.wait(.3)
	script.Parent.Text = "LOADING. . ."
	task.wait(.3)
until script:WaitForChild("Value").Value == 100

if script:WaitForChild("Value").Value == 100 then
	script.Parent.Text = "COMPLETED!"
	script.Parent.TextColor = BrickColor.new("Lime green")
end

Ma Kasih :3 (Thanks in Indonesian)

Hello, I am here to help you with your problem.

Try this, it’s not an efficient method, but…

repeat
	script:WaitForChild("Value").Value += 1
	script.Parent.Text = "LOADING."
	task.wait(.3)
	script.Parent.Text = "LOADING. ."
	script:WaitForChild("Value").Value += 1
	task.wait(.3)
	script.Parent.Text = "LOADING. . ."
	script:WaitForChild("Value").Value += 1
	task.wait(.3)
until script:WaitForChild("Value").Value > 99

if script:WaitForChild("Value").Value > 99 then
	script.Parent.Text = "COMPLETED!"
	script.Parent.TextColor = BrickColor.new("Lime green")
end

I hope I have helped you. If you have any questions, let me know and I will explain in detail.

cool one, my programming skills went in dust after a lot of work i did before.

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.