Attempt to call a number value????
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.
01 | local timerREM = game.ReplicatedStorage.Timer_RemoteEvent |
02 | local Totaltime = { 00 , 10 } |
03 | local minutesval = Totaltime [ 1 ] |
04 | local secondsval = Totaltime [ 2 ] |
05 | local totaltime = tostring (minutesval.. ": " .. secondsval) |
07 | local function minutes() |
08 | minutesval = minutesval - 1 |
09 | totaltime = tostring (minutesval.. ": " .. secondsval) |
10 | timerREM:FireAllClients(totaltime) |
13 | local function seconds() |
14 | if minutesval = = 0 and secondsval = = 0 then |
15 | print ( "The players are spawning again" ) |
16 | local players = game.Players:GetChildren() |
17 | local PlayerCharacters = { } |
18 | local spawns = game.Workspace.Spawns |
20 | for i, player in pairs (players) do |
21 | table.insert(PlayerCharacters, #PlayerCharacters + 1 , player.Character) |
24 | for i, v in pairs (PlayerCharacters) do |
25 | local desiredSpawn = math.random( 1 , 12 ) |
27 | v.HumanoidRootPart.Position = Vector 3. new(spawns [ desiredSpawn ] .Position + spawns [ desiredSpawn ] .Size/ 2 ) |
30 | totaltime = tostring (Totaltime [ 1 ] .. ": " .. Totaltime [ 2 ] ) |
31 | minutes = Totaltime [ 1 ] |
32 | seconds = Totaltime [ 2 ] |
34 | if secondsval = = 0 then |
38 | secondsval = secondsval - 1 |
39 | totaltime = tostring (minutesval.. ": " .. secondsval) |
40 | timerREM:FireAllClients(totaltime) |
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.