I have this short script here that I want to use to remove a certain tool. But the problem is if the player has it enabled it won't be removed. Is there a way to access what they have selected?
Here's the script:
1 | first_infected.StarterGear.Shrike:remove() |
2 | first_infected.Backpack.Shrike:remove() |
Thanks!
Tools, when equipped, are moved into the player's character.
Just check there, too (I'm unsure if deleting an equipped tool might have bad effects)
1 | place = first_infected.StarterGear; |
2 | if place:FindFirstChild( "Shrike" ) then |
3 | place.Shrike:Destroy() |
4 | end |
5 | place = first_infected.Character; |
6 | if place:FindFirstChild( "Shrike" ) then |
7 | place.Shrike:Destroy() |
8 | end |
This solution may fix the problem you saw:
01 | place = first_infected.StarterGear; |
02 | if place:FindFirstChild( "Shrike" ) then |
03 | place.Shrike:Destroy() |
04 | end |
05 | place = first_infected.Character; |
06 | if place:FindFirstChild( "Shrike" ) then |
07 | local tool = place.Shrike; |
08 | tool.Enabled = false ; |
09 | tool:Destroy() |
10 | end |
1 | place = first_infected.Character; |
2 | if place:FindFirstChild( "Shrike" ) then |
3 | place:FindFirstChild( "Shrike" ).Parent = first_infected.Backpack |
4 | wait() |
5 | v.Backpack.Shrike:Destroy() |
6 | end |
It removes it to the backpack from where I can destroy it.