Heres the script:
01 | local clickdetector = script.Parent |
02 | clickdetector.MouseClick:Connect( function (player) -- registers the click |
03 | while true do -- from here its just to code |
04 | game.Workspace.OHHH.Position = Vector 3. new(- 16.3 , 0.5 , - 10.5 ) |
05 |
06 | wait( 3 ) |
07 | game.Workspace.OHHH.Position = Vector 3. new(- 16.4 , 0.5 , - 8.8 ) |
08 | wait( 3 ) |
09 | end |
10 | end ) |
so basically this script is linked to a Click Detector and when I click it, the block goes above into the air and not in the ground like its supposed to, help!
Try replacing the Position with a CFrame
Exmple:
01 | local clickdetector = script.Parent |
02 | clickdetector.MouseClick:Connect( function (player) |
03 | while true do |
04 | game.Workspace.OHHH.CFrame = CFrame.new(- 16.3 , 0.5 , - 10.5 ) |
05 |
06 | wait( 3 ) |
07 | game.Workspace.OHHH.CFrame = CFrame.new(- 16.4 , 0.5 , - 8.8 ) |
08 | wait( 3 ) |
09 | end |
10 | end ) |