Answered by
4 years ago Edited 4 years ago
You're getting this error becuase you defined the bodyposition and bodygyro just in the function. Try to write the variable in the start of the script, and when you have the pet you parent to it. See the example:
01 | local pet = script.Parent |
02 | local bodyPos = Instance.new( "BodyPosition" ) |
03 | local bodyGyro = Instance.new( "BodyGyro" ) |
05 | function givePet(player) |
07 | local character = player.character |
10 | local newpet = pet:Clone() |
11 | newpet.Parent = character |
13 | bodyPos.Parent = newpet |
14 | bodyPos.MaxForce = Vector 3. new( math.huge , math.huge , math.huge ) |
16 | bodyPos.Paren = newpet |
17 | bodyGyro.MaxTorque = Vector 3. new( math.huge , math.huge , math.huge ) |
20 | bodyPos.Position = humRootPart.Position + Vector 3. new( 2 , 2 , 3 ) |
21 | bodyGyro.CFrame = humRootPart.CFrameend |
27 | game.Players.PlayerAdded:Connect( function (player) |
28 | player.CharacterAdded:Connect( function (char) |
When you use local, the variable its on the scope of the if statement, so the script off the scope will see as nil.