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

Can someone help with my message script?

Asked by 10 years ago

Script:

h = Instance.new("Hint", Workpace)
while wait() do
h.Text = "1"
Wait(2.5)
h.Text = "2"
Wait(2.5)
h.Text = "3"
wait(2.5)
h.Text = "4"
wait(2.5)
h.Text = "5"
end

Output: Blank about script (Nothing)

1 answer

Log in to vote
1
Answered by 10 years ago

lol u put Wait(2.5) on first 2 texts

h = Instance.new("Hint", Workpace)
while wait() do
h.Text = "1"
wait(2.5)
h.Text = "2"
wait(2.5)
h.Text = "3"
wait(2.5)
h.Text = "4"
wait(2.5)
h.Text = "5"
end

~~ happy scripting!~~

0
Thank you. I didn't know that, my mistake. fireboltofdeath 635 — 10y
Ad

Answer this question