So I have a menu screen for my game and I want to make it so that this top bar isn’t visible when your in the menu screen. Ive tried both scripts below on local and server script and it didn’t work, what should I do?
Tried this and it didn’t work. I tried it on both server and local script.
local F3 = ("Frame3")
local M = ("MoneyDisplayFrame")
local F = ("Frame1")
while true do
wait()
if F.Visible == true then
M.Visible = false
F3.Visible = false
end
end
Same here
local T = ("TopBar")
local M = ("Menu")
while true do
wait()
if M.Enabled == true then
T.Enabled = false
end
end