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

Why won't the Morph script work?

Asked by 9 years ago

READ THIS This is not your "Normal" morphing script, this script is suppose to make you small. So, now that is said. Here's the script-

01local morph = script.Parent.Parent:findFirstChild("Mini-Player")
02 
03function touch(MorphButton)
04    if(MorphButton.Parent:findFirstChild("Humanoid") == nil)then return end
05    local p = game.Players:findFirstChild(MorphButton.Parent.Name)
06    if(p == nil)then return end
07    local m2 = morph:clone()
08    m2.Name = MorphButton.Parent.Name
09    m2.Torso.Anchored = false
10    m2.Torso.Position = m2.Torso.Position + Vector3.new(0,3,0)
11    m2.Head.Position = m2.Head.Position + Vector3.new(0,3,0)
12    m2.Hat.Position = m2.Hat.Position + Vector3.new(0,3,0)
13    p.Character = m2
14    --part.Parent:remove()
15    m2.Parent = game.Workspace
16    m2:MakeJoints()
17end
18 
19script.Parent.Touched:connect(touch)

Answer this question