of     1   

FelixTheWo1f
#187931541Saturday, April 23, 2016 4:05 PM GMT

I've got a script that I made and I can't make it so the new ParticleEmmiter will go inside the humanoid while it hits the part. function onTouched(hit) local h = Instance.new("ParticleEmitter") h.Color.Start = ("255, 0, 0") h.Color.End = ("255, 140, 0") h.Texture = "rbxgameasset://Images/Speck_Particle" h.Rate = 10 h.Speed = ("5, 6") h.Parent = hit end script.Parent.Touched:connect(onTouched) Any help on how to make it go into the player's model while it hits?
FelixTheWo1f
#187931631Saturday, April 23, 2016 4:07 PM GMT

I tried it with h.Parent = hit ;-;
FelixTheWo1f
#187932733Saturday, April 23, 2016 4:22 PM GMT

Ping!
Uzil
#187933459Saturday, April 23, 2016 4:32 PM GMT

tell me exactly what you are trying to do and I can help you
SunXao
#187933573Saturday, April 23, 2016 4:34 PM GMT

You need to check if the touched object is linked to humanoid, then parent it into the torso.
FelixTheWo1f
#187962560Saturday, April 23, 2016 11:39 PM GMT

When a Player touches the part it's suppose to go inside the Players torso. I want that result to happen, and I can't script that part.
FelixTheWo1f
#187962657Saturday, April 23, 2016 11:41 PM GMT

When you help me, give me the script line(s) so I can copy and paste lol
Noiretop
#187963269Saturday, April 23, 2016 11:52 PM GMT

so just replace h.Parent = hit by if hit.Parent.Torso ~= nil then -- means if there is a torso h.Parent = hit.Parent.Torso else -- if not then it ends end end
Noiretop
#187963442Saturday, April 23, 2016 11:54 PM GMT

Because if you make the parent "hit", it will be in the model and not in the torso so i made if there is a torso then it will be in
Noiretop
#187963890Sunday, April 24, 2016 12:02 AM GMT

--here is the full script :)' --You can just copy and past all even the text at top! function onTouched(hit) if hit.Parent.Torso ~= nil and hit.Parent.Humanoid ~= nil then local h = Instance.new("ParticleEmitter") h.Color.Start = ("255, 0, 0") h.Color.End = ("255, 140, 0") h.Texture = "rbxgameasset://Images/Speck_Particle" h.Rate = 10 h.Speed = ("5, 6") h.Parent = hit.Parent.Torso end end script.Parent.Touched:connect(onTouched)
FelixTheWo1f
#187968258Sunday, April 24, 2016 1:12 AM GMT

It's still not working :(
TheCaptainTeach
#187968320Sunday, April 24, 2016 1:13 AM GMT

Wouldn't the scripts be similar to one of a morph?
FelixTheWo1f
#187968845Sunday, April 24, 2016 1:21 AM GMT

Maybe, I'm on to something right now so I'll try it later. Thanks!

    of     1