How to make when you equipped tool, aura will summon behind you

  1. *i locked though youtube and i didnt found anything solution about how to add aura to tool like, when you are equipped your tool aura will spawn behind you ( clock )

  2. *i am new in scripts, and i want to know how to do it! :smile:

  3. and i couldn’t find any topics about that ( sorry for bad grammar )

1 Like

Use the Tool.Equipped event and you can use particles to make an ‘aura’ effect.
Tool | Documentation - Roblox Creator Hub
Particle Emitters | Documentation - Roblox Creator Hub

1 Like

I suggest trying to learn the basics of scripting before tackling any other projects, but this question isn’t too bad to solve.

Here is a psuedocode you can follow (general instruction):

  1. Connect a function to the equip event of the tool
  2. When equip is fired, clone the aura behind the player by subtrating the z position from the player’s model CFrame
2 Likes