of     1   

Syntaxs
#139393078Sunday, July 06, 2014 5:00 AM GMT

How do I fix this? I made a script and it error'ed on this. if block.Position.Y >= 7.8 then block.Position.Y = 7.8 end And I got "Y cannot be assigned to" How do I fix or get around this?
Lacryma
#139393199Sunday, July 06, 2014 5:01 AM GMT

if block.Position.Y >= 7.8 then block.Position = Vector3.new(block.Position.X, 7.8, block.Position.Z) end and this only runs once so beware
Syntaxs
#139393326Sunday, July 06, 2014 5:03 AM GMT

I had it in a for statemen
Lacryma
#139393446Sunday, July 06, 2014 5:05 AM GMT

oh ok
Syntaxs
#139393522Sunday, July 06, 2014 5:06 AM GMT

thanks,

    of     1