How to give any tool the creator tag, so when you hit someone that person is tagged.
In a local script inside tool:
1 | local plr = game.Players.LocalPlayer |
2 | local tag = Instance.new( "ObjectValue" , script.Parent) |
3 | tag.Name = "creator" |
4 | tag.Value = plr |