Why won't the Morph script work?
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-
01 | local morph = script.Parent.Parent:findFirstChild( "Mini-Player" ) |
03 | function 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 m 2 = morph:clone() |
08 | m 2. Name = MorphButton.Parent.Name |
09 | m 2. Torso.Anchored = false |
10 | m 2. Torso.Position = m 2. Torso.Position + Vector 3. new( 0 , 3 , 0 ) |
11 | m 2. Head.Position = m 2. Head.Position + Vector 3. new( 0 , 3 , 0 ) |
12 | m 2. Hat.Position = m 2. Hat.Position + Vector 3. new( 0 , 3 , 0 ) |
15 | m 2. Parent = game.Workspace |
19 | script.Parent.Touched:connect(touch) |