Arsenal tool system

Hello again! I was wondering how can i make a system like on arsenal on which whenever a player kills another player it gets a random tool. Anyone got any ideas? Thanks!

2 Likes

Well, when they get a kill you would remove their current weapon and either get a random weapon or the next weapon in the cycle. I’m not going to give you a script since if you already have a system in place you just need to add to it.

2 Likes

Here is a way. At the start of the game you would load a whole list of how the weapons would be given. For that you could get a random weapon’s name from a Folder that contains all the Tools.
You would count the players kills. Every kill would represent the index of the weapons’ names you have got into an array. You would cycle by deleting the old Tool from the character and adding cloning a new one by the array’s value which would be the weapon’s name. And that’s the way of achieving a arsenal like weapon cycle system.

4 Likes