Why does this work
local Bloom = game.Workspace.Block
Bloom.Position = Vector3.new(0,1,0)
Why does this not work
local Bloom = game.Workspace.Block.Position
Bloom = Vector3.new(0, 1, 0)
or even(doesnt work either)
local Bloom = game.Workspace.Block.Position = Vector3.new(0,1,0)
Aren't these the same thing?
I'm just learning and practicing Luau and my first obstacle is not even being able to understand how to move the position of Block.

** You are now Level 2! **