Pet Script positioning/rotating problems?
Asked by
8 years ago Edited 8 years ago
01 | game.Players.PlayerAdded:connect( function (plr) |
02 | plr.CharacterAdded:connect( function (char) |
05 | firefly.Size = Vector 3. new( 2 , 2.4 , 2 ) |
06 | firefly.Transparency = 0.5 |
07 | firefly.CanCollide = false |
09 | firefly.Name = plr.Name .. "'s Firefly" |
12 | bp.maxForce = Vector 3. new( math.huge , math.huge , math.huge ) |
16 | bp.position = Vector 3. new(char.Torso.Position.X,char.Torso.Position.Y - 1 ,char.Torso.Position.Z + 4 ) |
17 | if char.Humanoid.Health < 1 then |
So this scripts creates a brick and it follows the player, however it always seems to follow on the same axis (hard to explain) and never rotates with the player(so how would I do that). Also how would I make It so this brick always pings back to the right side of the player? would I create a brick that is welded to the player to the right so the brick has a target position? I don't know , any help would be much appreciated thanks :)