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

"for limit must be a number"?

Asked by
Hasburo 150
9 years ago

16:58:52.419 - Workspace.MapChanger:169: 'for' limit must be a number

here's line 169;

1for i = 0, time do

& here's the full script;

01local event = Instance.new("RemoteEvent")
02event.Parent = game.ReplicatedStorage
03event.Name = "Timer"
04event.OnServerEvent:connect(function()
05    for i,v in ipairs(game.Players:GetChildren()) do
06        local timeremaining = v.PlayerGui.MapChangerGUI.Selector.TimerConfirm.Amount.Text
07        local button = v.PlayerGui.MapChangerGUI.Selector.Timer
08        local lol = game.Workspace.Boards.TrainingInfo.SurfaceGui.MainFrame.Display.Host.Time
09        local time = tonumber(timeremaining)
10        for i = 0, time do
11    local minutes = math.floor(time/60)
12local seconds = math.floor(time%60)
13local seconds2 = math.floor(time)
14                        wait(1)
15                        time = time - 1
View all 21 lines...

purpose of the script is to create a timer when fired (it's an event). it is called upon in another script though.

i'm pretty confused. help would be greatly appreciated!

0
i would make the time a numbervalue, but that's just my dumb way of doing things theCJarmy7 1293 — 9y

2 answers

Log in to vote
0
Answered by 9 years ago

local timeremaining = v.PlayerGui.MapChangerGUI.Selector.TimerConfirm.Amount.Text

Convert the string value to a number so instead of local time = timeremaining

Make it local time = tonumber(timeremaining)

0
Okay, I edited the main script but it's still not working. Still says the same problem with the 'for' limit must be a number. Hasburo 150 — 9y
0
I do not know what the string for text is but I am assuming it is only consisting of numbers in seconds. Flarebitz 0 — 9y
0
I have no idea what you just said. Hasburo 150 — 9y
Ad
Log in to vote
0
Answered by 5 years ago

I know I am late, but I just wanted to give an answer for this in case anyone is having this same issue. I was having this error, and here is how I fixed it.

Basically what the error says is that the limit (this is the number in the middle aka the 'end value') is not a valid number. This usually happens when you are working with the children of an object or part or whatever, the computer doesn't know what you want it to count the how many parts there are (this is just an example).

Most errors like this can be solved with a simple # in front of the end value.

1parts = game.Workspace.Parts:GetChildren()
2 
3for i = 1, #parts, 1 do -- insert the # in this line before the end value
4    -- insert code here
5end

This is how I solved it for me.

Answer this question