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

How to scale a tool proportional with a script?

Asked by 3 years ago

I wan't to scale a tool up proportional, but only the x axis changes..... I have this code but I can't scale it proportional with it:

character.Weight.Handle.Size = Vector3.new((Strength.Value / 250))

Please help!

1 answer

Log in to vote
1
Answered by 3 years ago

You are missing 2 parameters of the Vector3.new if you want all sizes to increase, do this:

character.Weight.Handle.Size = Vector3.new((Strength.Value / 250),(Strength.Value / 250),(Strength.Value / 250))

Hope it helps.

0
thx so much i am so stupid valledestroy 54 — 3y
Ad

Answer this question