i am pretty much brand new to scripting, and im trying to make it so when a bricks cframe hits anothers it will enable a script and denable itself.
while task.wait() do
if brick.CFrame.Position == script.Parent.Part.Position then
script.Parent.move2.Enabled = true
script.Enabled = false
end
brick.CFrame = brick.CFrame * CFrame.new(0, 0, 1.0)
end```