How Do I Make A Part Scale In One Direction?
Asked by
5 years ago Edited 5 years ago
The Current Script I'm Using :
01 | game.Workspace.Apple.Touched:Connect( function () |
02 | game.Workspace.Apple:Destroy() |
05 | game.Players.LocalPlayer.Character.HumanoidRootPart.Size = game.Players.LocalPlayer.Character.HumanoidRootPart.Size + Vector 3. new( 0 , 0 , 1 ) |
07 | for i, v in pairs (game.Players.LocalPlayer.Head:GetChildren( "Part" )) do |
08 | v.Size = v.Size + Vector 3. new( 1 , 1 , 1 ) |
09 | v.Position = v.Position - Vector 3. new( 5 , 0 , 0 ) |
11 | game.Players.LocalPlayer.leaderstats.Size.Value = game.Players.LocalPlayer.leaderstats.Size.Value + 1 |