is it possible to make a moving brick

[P00R] 34107
Joined 21/04/2022
Posts 329
09:32 AM 11/02/2023
if it is can some1 tell me how to do it


[Frick] Exposing
Joined 25/08/2022
Posts 16,156
09:36 AM 11/02/2023
No‎‎ ‎ ‎ ‎ ‎ ‎ ‎


[RWB] MixaMega
Joined 23/12/2019
Posts 435
Moderator
01:23 AM 13/02/2023
let brick = world.bricks.find(b=>b.name === "cool brick")

setInterval(()=>{
brick.setPosition(new Vector3(Math.random()100,Math.random()100,3))
},1000)

1