I’m trying to figure out why my wow addon doesn’t work in the script I wrote. I just want to change the cast bar text font. Also, if I can do the font for the default action bars as well that would be super. Any advice would be greatly appreciated
PlayerCastingBarFrame.timer = PlayerCastingBarFrame:CreateFontString(nil)
PlayerCastingBarFrame.timer:SetFont(“Fonts\Bazooka.ttf”, 13, “THINOUTLINE”)
PlayerCastingBarFrame.timer:SetPoint(“RIGHT”, CastingBarFrame, “RIGHT”, 24, 0)
PlayerCastingBarFrame.Text:SetFont(“Interface\Addons\Kevmoney\Bazooka.ttf”, 11)
PlayerCastingBarFrame.update = 0.1
TargetFrameSpellBar.timer = TargetFrameSpellBar:CreateFontString(nil)
TargetFrameSpellBar.timer:SetFont(“Fonts\Bazooka.ttf”, 13, “THINOUTLINE”)
TargetFrameSpellBar.timer:SetPoint(“RIGHT”, CastingBarFrame, “RIGHT”, 24, 0)
TargetFrameSpellBar.Text:SetFont(“Interface\Addons\Kevmoney\Bazooka.ttf”, 11)
TargetFrameSpellBar.update = 0.1