Hello, I am new to lua coding in general and after some research I have several question
what is better Tool weapon or Model weapon? are they different if so what are the pro and con of each type?
Model weapon (tool less) meaning it doesn’t have Activated() and Equipped() funtion (from my understanind) like tool weapon then how are you suppose to replicate the same result?
is it possible to combine the tool weapon and motor6d together and possibly animate the tool?
The Tool instance is specifically made for things that can be used or held by players. The main benefit is that they can be equipped by the player using Roblox’s core code, and they have a dedicated folder for storage already in the Player instance: the ‘Backpack’ folder.
The parts/meshes which make up a tool can be animated.
Yes. The Tool instance has a variety of events that you can listen to in order to know when the tool is equipped, unequipped, activated, and deactivated. Connect functions which play those animations to those events.
Tools is what you want to start with. If you will be using Models, this will mean you will have to make your own framework that is able to track your currently equipped and stored items while also making it possible to equip, unequip items. It actually does sound harder then it is (still depends on how complex you want your system to be).
Making a custom framework can be good if you want to have different visual approaches between client and server aka how you perceive your equipped item and how players perceive your equipped item. It also is less vulnerable to general tool exploits as it most likely will use different directories then Roblox’ core tool system.