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

How to properly resize a model?

Asked by 6 years ago
Edited by Shawnyg 6 years ago

Please make your question title relevant to your question content. It should be a one-sentence summary in question form.
01--[[Disclamer!!! BigBoiTiff is in production and is not allowed
02    to be sold on the black market just yet ;). This is a work in progres
03    so don't be mad if BigBoiTiff doesn't get as big as you want it to.
04    This is a Harford Day School/Bennet Robinson Production! All Copyright
05    Claims Belong to me! BigBoiTiff will be sold for 999999999 Kidneys
06    When it is Released! Get your Kidneys ready becase it's coming out this
07    Summer!
08--]]
09 
10 
11 
12function BigBoiTiff()
13    game.Workspace.Tiffany.Size = Vector3.new(999,999,999)
14 
15end
16 
17wait (8)
18 
19BigBoiTiff() --BigBoiTiff Activation

Tiffany is a r15 roblox female model and this script is supposed to make it super big, but it doesn't. Any help XD

0
Changed the title to be more relevant towards your issue. Shawnyg 4330 — 6y

3 answers

Log in to vote
0
Answered by 6 years ago
Edited 6 years ago

It is a model and models do not have a size so, game.Workspace.Tiffany.Size = Vector3.new(999,999,999) does not do anything.

Ad
Log in to vote
0
Answered by 6 years ago
Edited 6 years ago

Under every humanoid in a Player has several values that can manipulate player HeadScale, BodyWidth, BodyDepth, and BodyHeight variables.

Read more here: http://wiki.roblox.com/index.php/API:Class/Humanoid

Log in to vote
0
Answered by 6 years ago
1for _, v in pairs(game.Workspace.Tiffany:GetChildren()) do
2    if v:IsA”BasePart” then
3        v.Size = Vector3.new(X, Y, Z) — put your size
4    end
5end

Answer this question