My problem is that when I increase the size of a block, it also moves location!
By request, I added the code:
01 | function onTouched(part) |
02 | part:Destroy() |
03 | end |
04 |
05 | game.ServerStorage.CoreTemp.Changed:connect( function () |
06 | if game.ServerStorage.CoreTemp.Value = = 10000 then |
07 | for i = 1 , 2048 do |
08 | game.Workspace.Boom.Size = Vector 3. new(i,i,i) |
09 | game.Workspace.Boom.Position = Vector 3. new( 0 , 0 , 0 ) |
10 | game.Workspace.Boom.Touched:connect(onTouched) |
11 | wait() |
12 | end |
13 | end |
14 | end ) |
NEVER use Position
when changing the Position
of a part. Instead, use CFrame
. Using Position
can give you unexpected results.
01 | function onTouched(part) |
02 | part:Destroy() |
03 | end |
04 |
05 | game.ServerStorage.CoreTemp.Changed:connect( function () |
06 | if game.ServerStorage.CoreTemp.Value = = 10000 then |
07 | for i = 1 , 2048 do |
08 | game.Workspace.Boom.Size = Vector 3. new(i,i,i) |
09 | game.Workspace.Boom.CFrame = CFrame.new( 0 , 0 , 0 ) |
10 | game.Workspace.Boom.Touched:connect(onTouched) |
11 | wait() |
12 | end |
13 | end |
14 | end ) |
This should work.