#topbarplus icon doesnt show up

1 messages · Page 1 of 1 (latest)

gritty widget
#
--!strict
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local ServerScriptService = game:GetService("ServerScriptService")

local Fusion = require(ReplicatedStorage.Packages.Fusion)
local ByteNet = require(ReplicatedStorage.Packages.ByteNet)
local Icon = require(ReplicatedStorage.Packages.Icon)
local Signal = require(ReplicatedStorage.Packages.Signal)

-- CONSTANTS --

-- VARIABLES -- 
local player = game.Players.LocalPlayer

local terminalUIFrame = player.PlayerGui:WaitForChild("TerminalUI").Frame
if not terminalUIFrame then warn("Frame not found") return end

local terminalIconUI: Icon = Icon.new()

local TerminalUIClient = {}

function TerminalUIClient:init()
    terminalIconUI:setLabel("terminal")
end


return TerminalUIClient
local TerminalUIClient = require(game.ReplicatedStorage.Modules.TerminalUIClient)
TerminalUIClient:init()

i readded the topbarplus module but still doesnt work

fervent matrix
#

does the warning get printed or not?

gritty widget
gritty widget
fervent matrix
#

any more related code?

gritty widget
fervent matrix
#

where are u keeping the second script u gave, try to pcall the require and see if u can print the error, make sure coregui is enabled and that icon controller has settopbarenabled

#

other than that i dont think ur giving the full story