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

Easy Question: How i make a variable but this variable is equal in all scripts?

Asked by 3 years ago
--Example
local inttime = 30
for 0, 30, -1 --pls say my for error in answer
  inttime.value = inttime.value-1
end

I want to show this in gui so i wanna use this variable in local script too

2 answers

Log in to vote
0
Answered by 3 years ago

Also remember that when using for loops the first number, in this case it's 0 is the start, the second one, which is 30, is the end, and the third number, (for you it was -1, but it should of been 1) is the end.

If you're trying to make a countdown script, do something like this

local start = 30

for i = start, 0, -1 do
wait(1)
print(i)
end

This will countdown from 30

0
Also make sure you put a 'do' after your loop to specify that you're done writing the increment, etc. BIuehawks 62 — 3y
Ad
Log in to vote
0
Answered by 3 years ago

oh i solved that why i dont make a int value named intermission lol

0
was about to say that OwOShiba 78 — 3y
0
thx Omerevkizel 27 — 3y

Answer this question