|
h.Text = "1"
wait(1)
h.Text = "2"
wait(1)
h.Text = "3"
wait(1)
h.Text = "4"
wait(1)
h.Text = "5"
wait(1) |
|
|
for x = 1, 5, 1 do
h.Text = "Time left; " .. tostring(x)
wait(1)
end
If you want it to count backwards
for x = 5, 1, -1 do |
|
|
Thanks that helped me but I encountered a problem with this code.
local h = Instance.new("Hint")
local start = 0
h.Parent = game.Workspace
function onTouched(hit)
while true do
i = 1,start do
h.Text = start + i
wait(1)
end
script.Parent.touched:connect(onTouched)
It won't work, any reason why? |
|
|
|
You are trying to do
for x = 1, 0 do
That means start at 1, end at 0, go up by 1
1 will never reach 0 if its going up
Why are you doing start + i?
Just do .Text = tostring(i) |
|
|
Like this?
local h = Instance.new("Hint")
h.Parent = game.Workspace
local start = 0
function onTouched(hit)
i = 1,start do
h.Text = tostring(i)
wait(1)
end
script.Parent.touched:connect(onTouched)
deoesn't work btw... |
|
|
You are still trying to start at 1 and end at 0
That won't wirk |
|
|
local h = Instance.new("Hint")
local start = 10
h.Parent = game.Workspace
function onTouched(hit)
while true do
i = 1,start do
h.Text = tostring(i)
wait(1)
end
script.Parent.touched:connect(onTouched)
Soooooo like this??? |
|
|
are you dumb
for i = 1,10 do
h.Text = i
wait(1)
end
#code R+ | local RAP = "431,190"; local robux = "R$32,827" |
|
|
How would I get it to pause on the digit when touched again? |
|
|
while part.Touched:wait() do
local i = 1
h.Text = "Time Left: "..i
wait(1)
i = i + 1
end
#code R+ | local RAP = "432,223"; local robux = "R$25,000" |
|
|
This works but it says Time Took when you touch it the first time, I tried tweaking it but it made it worse. I need to make it count and then pause and say Time Took when you touch it the second time.
local h = Instance.new("Hint")
local start = 0
h.Parent = game.Workspace
function onTouched(hit)
for i = 1,999 do
h.Text = i
wait(1)
while hit.Touched:wait() do
local i = 1
h.Text = "Time it Took: "..i
wait(1)
i = i + 1
end
end
end
script.Parent.touched:connect(onTouched)
|
|
|
|
please someone? this is the last part i need for the code... |
|
|
script.Parent.Touched, you forgot the capital T
|
|