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

How do I make custom core scripts run in the coregui?

Asked by 4 years ago

I'm trying to recreate the old 2013 gui because they aren't built into the clients them selves (I'm using the 2013 client) but scripts won't actually do anything in there if I put them in manually. Please help!

0
When you make custom ui's like that, you need to turn off the core gui's and make your own. ForeverBrown 356 — 4y

1 answer

Log in to vote
0
Answered by 4 years ago

You can not modify core scripts but you can turn core gui off:

game.StarterGui: SetCoreGuiEnabled(Enum.CoreGuiType.All, false) 

Put above in a server script. Next, we need to hide the topbar:

game:GetService(“Players”).LocalPlayer: WaitForChild(“PlayerGui”): SetTopbarTransparency(1)

Put above in local script.

Of course, this isn’t the answer that you were looking for. But that is okay, since you have days of UI making ahead of you. Good luck replicating all of the old UI

0
No you see, I'm not trying to do it for everyone, I'm trying to do it for my specific client. I know it's possible to change what scripts the client uses in the core gui, but I just don't know how. Humanagon 5 — 4y
Ad

Answer this question