Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How to remove model when player touches? I add a script in model but it doesnt work

Asked by 5 years ago
Edited 5 years ago

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>
0
pls up my reputation i helped you iuclds 720 — 5y

2 answers

Log in to vote
0
Answered by 5 years ago
Edited 5 years ago

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.

1script.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
9end)

This would destroy the model if a player touches it.

Upvote if this helps :)

0
mines better fighter iuclds 720 — 5y
0
Thank you so much! this works perfectly! and deletes the whole model Awesome! Is there a way to bring it back maybe after a timer ?or after the round ends? Mast3rStRix 43 — 5y
Ad
Log in to vote
0
Answered by
iuclds 720 Moderation Voter
5 years ago
1script.Parent.Touched:Connect(function(hit) -- if it gets hit
2game.Workspace.YOURMODELNAME:Remove() -- the  model gets removed
3end) -- then it all ends

No need for all that extra

0
This might not work well. Since the event fires when ANYTHING touches the part even being on the ground would cause the model to be destroyed. FighterOmaga 50 — 5y
0
Thanks a lot is there a way to bring it back later maybe after a timer or when the "game ends? and a new one begins??? Mast3rStRix 43 — 5y

Answer this question