Advertisement
Josiahiscool73

Activate Chat backpack and more

May 5th, 2025
250
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.78 KB | None | 0 0
  1. --- This enables all Roblox options like chat, BackPack and others.
  2. local StarterGui = game:GetService("StarterGui")
  3.  
  4. local guiList = {
  5.     Enum.CoreGuiType.Backpack,
  6.     Enum.CoreGuiType.Chat,
  7.     Enum.CoreGuiType.Health,
  8.     Enum.CoreGuiType.PlayerList,
  9.     Enum.CoreGuiType.EmotesMenu,
  10.     Enum.CoreGuiType.Backpack,
  11. }
  12.  
  13. for _, gui in ipairs(guiList) do
  14.     StarterGui:SetCoreGuiEnabled(gui, true)
  15.  
  16.     StarterGui:SetCore("SendNotification", {
  17.         Title = "Enabled " .. gui.Name,
  18.         Text = "Activated successfully",
  19.         Duration = 3
  20.     })
  21.  
  22.     task.wait(0.1)
  23. end
  24.  
  25. StarterGui:SetCore("SendNotification", {
  26.     Title = "Completed!",
  27.     Text = "All options have been activated.",
  28.     Duration = 7.5
  29. })
  30.  
  31. StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.All, true)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement