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

"This function is not yet enabled!", what does this means and how do fix?

Asked by
Xianon 105
8 years ago

It doesn't specify which function, so but here i got the only two possible functions causing this problem.

local function addPlayer(addedPlayer)
    table.insert(queque, addedPlayer)
end
------------------------------------------------------------

local function removePlayer(player)
for i,l in pairs(queque)do
    if l.addedPlayer == player then
        table.remove(queque, i)
    end
end
end

1 answer

Log in to vote
3
Answered by 8 years ago

That isn't your scripts doing that. I was testing a game without any of my code in it and it prints that error. It's something roblox did and it will hopefully be fixed soon. I haven't noticed anything not working from it besides it spamming the output.

Just ignore it

0
Yep, my code works, but this kinda confuses one. Xianon 105 — 8y
Ad

Answer this question