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

Roblox updated today, why did my entire game break?

Asked by 3 years ago

today roblox updated like any normal day i go into studio and test run just to remind myself what i got so far but no not this time roblox has decided that my game should just suddenly be broken for no reason so ye here is the error

SetCore: TopbarEnabled has not been registered by the CoreScripts

and here is the code that apparently causes it

game.StarterGui:SetCore("TopbarEnabled", false)

this code can be fixed with a wait before it however doesn't work with loops waiting until there done or anything just waits cause that makes the most sense apparently

0
well i mean the entire game didn't break soo NGC4637 602 — 3y
0
doesn't that mean it is already solved? Do you still have other questions about this? NGC4637 602 — 3y
0
replace “roblox” with "the day of the week" and you have the story of my life Speedmask 661 — 3y

1 answer

Log in to vote
0
Answered by
mroaan 95
3 years ago
Edited 3 years ago

idk about the update dude but this will fix it:

local TopBarSuccess
while TopBarSuccess ~= true do
    TopBarSuccess = pcall(game.StarterGui.SetCore, game.StarterGui, "TopbarEnabled", false)
    wait()
end
Ad

Answer this question