I asked this question before, but no one replied to it so I'm asking it again! Why does this not work with changing the R-15 body meshes? and what do I need to change to make it work?
victim = script.Parent.Parent.Parent.Parent.Parent.Character function kill() script.Parent.Parent:Destroy() --Character Meshes LeftFoot = victim.LeftFoot LeftFoot.MeshID = ("http://www.roblox.com/asset/?id=542649994") LeftHand = victim.LeftHand LeftHand.MeshID = ("http://www.roblox.com/asset/?id=542649942") LeftLowerArm = victim.LeftLowerArm LeftLowerArm.MeshID = ("http://www.roblox.com/asset/?id=542649944") LeftLowerLeg = victim.LeftLowerLeg LeftLowerLeg.MeshID = ("http://www.roblox.com/asset/?id=542650004") LeftUpperArm = victim.LeftUpperArm LeftUpperArm.MeshID = ("http://www.roblox.com/asset/?id=542649949") LeftUpperLeg = victim.LeftUpperLeg LeftUpperLeg.MeshID = ("http://www.roblox.com/asset/?id=542650009") LowerTorso = victim.LowerTorso LowerTorso.MeshID = ("http://www.roblox.com/asset/?id=542650030") RightFoot = victim.RightFoot RightFoot.MeshID = ("http://www.roblox.com/asset/?id=542650013") RightHand = victim.RightHand RightHand.MeshID = ("http://www.roblox.com/asset/?id=549545789") RightLowerArm = victim.RightLowerArm RightLowerArm.MeshID = ("http://www.roblox.com/asset/?id=549545792") RightLowerLeg = victim.LeftLowerLeg RightLowerLeg.MeshID = ("http://www.roblox.com/asset/?id=542650017") RightUpperArm = victim.RightUpperArm RightUpperArm.MeshID = ("http://www.roblox.com/asset/?id=549545795") RightUpperLeg = victim.RightUpperLeg RightUpperLeg.MeshID = ("http://www.roblox.com/asset/?id=542650023") UpperTorso = victim.UpperTorso UpperTorso.MeshID = ("http://www.roblox.com/asset/?id=542649972") end script.Parent.MouseButton1Down:connect(kill)
thank you ~Fin
What do you expect to happen when you destroy the script's Parent before all the code can execute, dingus.
(Line 5)