of     1   

Dued1
#407663Monday, January 21, 2008 5:58 PM GMT

what did i do wrong on this script. I want me to move blocks position. while true do wait(10) game.Workspace.Dued1:MoveTo(block.Position)) end
Zuka
#407838Monday, January 21, 2008 6:34 PM GMT

block = game.Workspace.Block Do you have something that defines "block"?
Dued1
#408189Monday, January 21, 2008 7:37 PM GMT

oh yea i fogot it but it still doesnt work block = game.Workspace.block while true do wait(10) game.Workspace.Dued1:MoveTo(block.Position)) end
Zuka
#408626Monday, January 21, 2008 8:38 PM GMT

Take off a )
ipod525
#408651Monday, January 21, 2008 8:43 PM GMT

What I need is a On and Off button for automatic toasters T_T
burgly
Top 100 Poster
#408672Monday, January 21, 2008 8:45 PM GMT

You need to use Humanoid:MoveTo() This should work. block = game.Workspace.block while true do wait(10) game.Workspace.Dued1.Humanoid:MoveTo(block.Position) end
Zuka
#408975Monday, January 21, 2008 10:11 PM GMT

No, burgly, theres a :moveto(vector3 location) for models. Humanoids need a vector3 and a brick.
Dued1
#409618Tuesday, January 22, 2008 12:10 AM GMT

no im teleporting myself
Dued1
#409626Tuesday, January 22, 2008 12:13 AM GMT

thx i got it to work zuka

    of     1