Advertisement
raulib

fix yourself

Jul 15th, 2018
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. -- CoreGUI Settings by VariadicFunction
  2.  
  3. -- INFO ------------------------------------------------------
  4.  
  5. -- Put in StarterPlayerScripts and set the Settings
  6. -- values according to how you want the CoreGuis enabled
  7.  
  8. -- Setting a value to false will hide that UI
  9.  
  10. --------------------------------------------------------------
  11.  
  12.  
  13.  
  14. local SETTINGS = {
  15. PlayerList = true;
  16. Health = true;
  17. Backpack = true;
  18. Chat = true;
  19. }
  20.  
  21. for Setting, Value in next, SETTINGS do
  22. game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType[Setting], Value)
  23. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement