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

Why is the block moving when I increase the size?

Asked by 8 years ago
Edited 8 years ago

My problem is that when I increase the size of a block, it also moves location!

By request, I added the code:

01function onTouched(part)
02    part:Destroy()
03end
04 
05game.ServerStorage.CoreTemp.Changed:connect(function()
06    if game.ServerStorage.CoreTemp.Value == 10000 then
07        for i=1, 2048 do   
08            game.Workspace.Boom.Size = Vector3.new(i,i,i)
09            game.Workspace.Boom.Position = Vector3.new(0,0,0)
10            game.Workspace.Boom.Touched:connect(onTouched)
11            wait()
12        end
13    end
14end)
0
Is it near another block, if so. Does the block move above the other block? Odiosus_Ancilla 34 — 8y
0
it goes on top of the other block AlphaGamer150 101 — 8y
0
so ya AlphaGamer150 101 — 8y
0
Can you include the code you are using. User#5423 17 — 8y
View all comments (2 more)
0
ok AlphaGamer150 101 — 8y
0
use cframe, might fix it. ive had the same problems in the past Kyokamii 133 — 8y

1 answer

Log in to vote
1
Answered by 8 years ago

NEVER use Position when changing the Position of a part. Instead, use CFrame. Using Position can give you unexpected results.

01function onTouched(part)
02    part:Destroy()
03end
04 
05game.ServerStorage.CoreTemp.Changed:connect(function()
06    if game.ServerStorage.CoreTemp.Value == 10000 then
07            for i=1, 2048 do   
08            game.Workspace.Boom.Size = Vector3.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
14end)

This should work.

0
Thanks AlphaGamer150 101 — 8y
0
Using position doesn't give unexpected results. It's expected that a part moves ontop of another part when you chance its position because of colissions. RubenKan 3615 — 8y
Ad

Answer this question