For some reason the backgroundcolor doesn’t change when I describe the path like this:
local StarterGUI = game:GetService("StarterGui")
while wait(0.07) do
StarterGUI.Ui.Settings.Gear.Open.OverheadGUI.ON.BackgroundColor3 = Color3.new(1, 0, 0)
StarterGUI.Ui.Settings.Gear.Open.OverheadGUI.OFF.BackgroundColor3 = Color3.new(0.258824, 1, 0.129412)
print("hey")
end
But if I use script.Parent instead of the long line it works. The thing is I need the long line.