Hello There, So I’ve been trying to create a moving block for my experience with BodyPosition and it does not work. The code runs perfectly because I can see the body position’s value changing every 2 seconds. However, this change doesn’t affect the Actual block’s position.
-- I am not sure if this is going to turn out as a Code block, I am new.
while true do
script.Parent.BodyPosition.Position = script.Parent.Parent.Tele1_1.Position
wait(2)
script.Parent.BodyPosition.Position = script.Parent.Parent.Tele1_2.Position
wait(2)
end