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

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 :

01game.Workspace.Apple.Touched:Connect(function()
02    game.Workspace.Apple:Destroy()
03 
04 -- The Head
05    game.Players.LocalPlayer.Character.HumanoidRootPart.Size = game.Players.LocalPlayer.Character.HumanoidRootPart.Size + Vector3.new(0,0,1)
06    -- The Body
07for i, v in pairs (game.Players.LocalPlayer.Head:GetChildren("Part")) do
08        v.Size = v.Size + Vector3.new(1,1,1)
09        v.Position = v.Position - Vector3.new(5,0,0)
10    end
11    game.Players.LocalPlayer.leaderstats.Size.Value = game.Players.LocalPlayer.leaderstats.Size.Value + 1
12end)
0
please put your code in a code block theking48989987 2147 — 5y

Answer this question