Hello, I am having trouble removing models all together. It s supposed to remove the model everytime the player touches but it won't work How can I remove the model when the player touches it? The code I am using right now deletes only the part on which the script is while I want the whole thing Regards,
This is the code i ve been using:
1 | > script.Parent.Touched:Connect( function (grow) |
2 | > function touch() |
3 | > script.Parent:remove() |
4 | > end |
5 | > |
6 | > script.Parent.Touched:connect(touch) |
7 | > end ) |
8 | > |
So if you want to remove a model if a player touches a part of the model this should work.
This script would go into the part you want to touch.
1 | script.Parent.Touched:Connect( function (hit) --Detects if something touches the part. |
2 | local model = script.Parent.Parent --Defines what the model is. |
3 |
4 | if hit.Parent then --Checks if hit has a parent. |
5 | if hit.Parent:FindFirstChild( "Humanoid" ) then --Checks if it has a humanoid. |
6 | model:Destroy() --If it does then destroy the model. |
7 | end |
8 | end |
9 | end ) |
This would destroy the model if a player touches it.
Upvote if this helps :)
1 | script.Parent.Touched:Connect( function (hit) -- if it gets hit |
2 | game.Workspace.YOURMODELNAME:Remove() -- the model gets removed |
3 | end ) -- then it all ends |
No need for all that extra