Need help with script/addon running at start up

Gave up on trying to find a Move Anything alternative. Figured I can learn another scripting language slowly but surely to get the results I want.

I currently have the following:
My Addon Folder is located at C:\Program Files (x86)\World of Warcraft_retail_\Interface\Addons\HideStuff

My TOC is “hidestuff.toc”

Interface: 80200
Title: HideStuff
Notes: Hides stuff
HideStuff.lua

My Lua is “hide.lua”

MainMenuBarArtFrame.LeftEndCap:Hide()
MainMenuBarArtFrame.RightEndCap:Hide()
MicroButtonAndBagsBar:Hide()

Issue 1, I can’t see my addon folder appearing
Issue 2, my addon doesn’t load up or appear anywhere

What am I doing wrong?

edit: Nothing, I did nothing wrong. It’s working and I think it’s because of my version change in the toc.

To create a simple 1 file addon, paste your code into the website addon.bool.no (change the folder name etc.)

.toc file identifier entries start with ##

## Interface: 80200
## Title: My Test Stuffz
## Author: Fizzlemizz
## Version: 1.0
## Notes: Fizzle Tests
MyStuff.lua

Your .toc says your .lua file is called HideStuff.lua but your text says it’s called hide.lua. Use one or the other for both.

Make sure the .toc file name is the same as the addon folder name.

2 Likes

I think this was a typo on the forum. I ended up resolving it, thinking it was the version I had in the lua script needing to be changed.

Thank you Fizzle