How to move a part up and down in Roblox Studio

preview_player
Показать описание
We write a very short script to move a wall up and down in Roblox Studio. This script can also be used to move a part left and right or in and out of the screen.
Рекомендации по теме
Комментарии
Автор

this guy needs a medal, he is very good at explaining things, thank you

mr.popcan
Автор

Your very good at explaining things like im a noob at Cframe and now i understand it :) well a bit not fully🙃

Icypenguin
Автор

u deserve millions of subs, you're not scared to share your knowledge about studio <3

Amazianna
Автор

Thank you so much bro, I needed you for this one thing. You simplified it, you were so calm. You did everything to help me with this. I'm trying to make an obby and all I needed was this.

TheTremendousNullZone
Автор

it's great that you don't put code on description, it makes this better.

RemRio
Автор

This was really well explained. Thank you.

adoptmeinfoswithkittykathi
Автор

bro you are an absoloute legend thank you so much for explaining

omarxgamer
Автор

I've been looking for tutorials forever and this is the best tutorial I've found so far tysm!

supreme_wafflez
Автор

hay i need help this works great for parts but i was wondering how i can do this to a mesh it wont move even if i combine a part with the mesh

anonymoussimper
Автор

Very informative video this is what coding beginners need like me!

realrdf
Автор

Here is script (edit as needed)

local part = script.Parent

while true do
wait(0.1)
for i=1, 30 do
part.CFrame = part.CFrame * CFrame.new(0, 0.1, 0)
wait(0)
end
for i=1, 30 do
part.CFrame = part.CFrame * CFrame.new(0, -0.1, 0)
wait(0)
end
end

lqxy.
Автор

quick question can it make sounds as it moves up/down?

Maxicek-kyzc
Автор

Holy Crap... this is extremely descriptive and helpful.

tomatobuns
Автор

hey mate, thanks for the info. i just wonder why it says in Output "CFrame is not an valid member of workspace "workspace" ?

mikeahlinder
Автор

thanks it helps so much ima use this everytime ima make a thing to move up and down

AronStorm
Автор

Thanks a used this to make a dragons head move

alegendarygamer
Автор

Thank you, this is so easy to understand

idkwhattodo
Автор

tysm this is the first video that actually worked

dampcow
Автор

how not to fall from moving object after i jumped on it? i jump on platform stay still but keep falling when object moves

habond
Автор

Great explanation, you accidentally taught me how to Use ‘for I =‘ thanks lol

CraizyMotion