--[[ WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk! ]] -- LocalScript (place in StarterPlayerScripts or StarterGui) local Players = game:GetService("Players") local Player = Players.LocalPlayer -- Wait for the GUI to load in PlayerGui local screenGui = Player:WaitForChild("PlayerGui"):WaitForChild("DarkGUI") -- Make the GUI visible screenGui.Enabled = true -- Optional: If you want to show a specific button inside the GUI -- local button = screenGui:WaitForChild("ButtonName") -- button.Visible = true.