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

Attempt to call a number value????

Asked by 4 years ago

I was trying to script a code that teleports players to a certain area when a timer finishes, and from nowhere, when I call the function minutes() its says: Attempt to call a number value.

Please help me.

01local timerREM = game.ReplicatedStorage.Timer_RemoteEvent
02local Totaltime = {00, 10}  -- For changing the total time of the timer, change the 1st (minutes) and 2nd (seconds) value --
03local minutesval = Totaltime[1]
04local secondsval = Totaltime[2]
05local totaltime = tostring(minutesval.. ": ".. secondsval)
06 
07local function minutes()  -- Important Part
08    minutesval = minutesval - 1
09    totaltime = tostring(minutesval.. ": ".. secondsval)
10    timerREM:FireAllClients(totaltime)
11end
12 
13local function seconds()
14    if minutesval == 0 and secondsval == 0 then
15        print("The players are spawning again")
View all 50 lines...

The thing is that when I call the function seconds() the script doesnt says there's an error.

This ocurred to me much times, like when I was trying to tween a GUI's position, and when calling functions.

1 answer

Log in to vote
1
Answered by
Ziffixture 6913 Moderation Voter Community Moderator
4 years ago
Edited 4 years ago

You reserved minutes & seconds as functions, on line 31-32 you reallocate their identifiers with numeric array elements: {00, 10}.

The compiler is then instructed to call them as functions later on, hence "Attempt to call a number value".

I suggest you change the variable names on the lines mentioned above; I assume you meant: "minutes/seconds-val"?

0
Thanks it helped bruno13bruno13 78 — 4y
0
Thanks it helped bruno13bruno13 78 — 4y
Ad

Answer this question