Hello, the problem is, the image buttons show in studio and such, but when you join in game, it will be automatically set to invisible (visible = false).
We tried disabling the scripts and such, it still occured, we even tried re writing the code, same error. We even tried using CTRL + SHIFT + H and searching for Visible = false. Nothing was found.
Bool Check script:
local bool = script.Parent:WaitForChild("Settings"):WaitForChild("GuiLayout"):WaitForChild("HorizontalLayout")
bool.Changed:Connect(function()
if bool.Value == false then
script.Parent:WaitForChild("LivesButtonH").Visible = false
script.Parent:WaitForChild("SettingsButtonH").Visible = false
script.Parent:WaitForChild("ShopButtonH").Visible = false
script.Parent:WaitForChild("SkillsButtonH").Visible = false
--
script.Parent:WaitForChild("LivesButtonV").Visible = true
script.Parent:WaitForChild("SettingsButtonV").Visible = true
script.Parent:WaitForChild("ShopButtonV").Visible = true
script.Parent:WaitForChild("SkillsButtonV").Visible = true
else
script.Parent:WaitForChild("LivesButtonH").Visible = true
script.Parent:WaitForChild("SettingsButtonH").Visible = true
script.Parent:WaitForChild("ShopButtonH").Visible = true
script.Parent:WaitForChild("SkillsButtonH").Visible = true
--
script.Parent:WaitForChild("LivesButtonV").Visible = false
script.Parent:WaitForChild("SettingsButtonV").Visible = false
script.Parent:WaitForChild("ShopButtonV").Visible = false
script.Parent:WaitForChild("SkillsButtonV").Visible = false
end
end)
Explorer Directory:
Video:

