How would I find or if the player has tool equipped?
Asked by
3 years ago Edited 3 years ago
Hey scriptinghelpers, I'm working on a tool. So the touch is fine everything works but, I'm trying to add or if the player has the tool equipped then to this function (or something like it similar doesn't have to be an if then statement). I don't really know how I would do this or, where I would put this.
This is a script inside of a Handle(part), handle is inside of a tool.
3 | local character = part.Parent |
4 | local player = game.Players:GetPlayerFromCharacter(character) |
5 | script.Parent.BrickColor = player.TeamColor |
6 | script.Parent.Value.Value = player.TeamColor |
8 | script.Parent.Touched:Connect(onTouch) |
Thanks for the help in advance! I appreciate it.
Thanks Xyternal for the solution! Here's my script I ended up with.
01 | local player = script:FindFirstAncestorWhichIsA "Player" or game:GetService "Players" :GetPlayerFromCharacter(script.Parent.Parent) |
02 | function toolEquipped() |
03 | game.ReplicatedStorage.StringValue.Value = "Equipped" |
04 | game.ReplicatedStorage.BrickColorValue.Value = player.TeamColor |
06 | function toolUnequipped() |
07 | game.ReplicatedStorage.StringValue.Value = "Unequipped" |
09 | script.Parent.Equipped:Connect(toolEquipped) |
10 | script.Parent.Unequipped:Connect(toolUnequipped) |