Тёмный

How To Make Up And Down Moving Platform (Roblox Studio) 

The Tomato
Подписаться 13 тыс.
Просмотров 6 тыс.
50% 1

How To Make Up And Down Moving Platform (Roblox Studio)
In this video I show you how to make a small Up and Down moving platform
Enjoy!
/\*/\*/\*/\*/\*/\*/\*/\*/\*/\*/\*/\*/\*/\
Join my Discord Server (Cus why not 🤷‍♂️)
Discord: / discord
Same with my roblox group:
Group: www.roblox.com/groups/3290109...
\/*\/*\/*\/*\/*\/*\/*\/*\/*\/*\/*\/*\/*\/

Опубликовано:

 

12 окт 2023

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 45   
@kamaria2006
@kamaria2006 9 месяцев назад
I just learned the next level and basics of scripting now i think i can make my own game (that isn’t a battlegrounds game) but this tutorial is helping me ty tomato!
@JustHexis0472
@JustHexis0472 9 месяцев назад
what type of game are you making? im making a horror game
@kamaria2006
@kamaria2006 9 месяцев назад
@@JustHexis0472 I’m making like a cube obby horror thingy game
@themuchacho5489
@themuchacho5489 9 месяцев назад
Would like it if you continued your totorial sinse The game you made uncopylocked doesent have fx player ragdoll and bc getting a totorial just makes everything make more sense
@canerlid
@canerlid 9 месяцев назад
Good!
@NoobCoder196
@NoobCoder196 9 месяцев назад
Part 4 for combat system! Mabye it can be block/skill system, please make part 4 man!
@sushigamingyt21
@sushigamingyt21 9 месяцев назад
Hey dude, please make part 4 for the combat system Make it like a mobile support thing and make like part 5 all about making it smoother or smth idk
@NatMontyYear
@NatMontyYear 9 месяцев назад
can u try to make breakable wall or smth? like tsb
@emix_tut
@emix_tut 9 месяцев назад
nice
@AngelPerez-um5dl
@AngelPerez-um5dl 9 месяцев назад
Please let the next video be about how to create weapons with death animation🙏🙏🙏🙏
@emix_tut
@emix_tut 9 месяцев назад
Yesesy
@JDAWG1776
@JDAWG1776 9 месяцев назад
How to make battleground’s tutorial 4th part when 🗿
@NoobCoder196
@NoobCoder196 9 месяцев назад
Fr
@Saykator
@Saykator 5 месяцев назад
Free model?
@BryanYT08
@BryanYT08 9 месяцев назад
Yoooo im early
@Blackpiper123
@Blackpiper123 9 месяцев назад
First and nice work
@rafaelcordobairibarren4894
@rafaelcordobairibarren4894 9 месяцев назад
there is an script that more easy
@chadou972oyaaa8
@chadou972oyaaa8 6 месяцев назад
Where the script?
@ItsBxlue
@ItsBxlue 8 дней назад
in the video??
@sandroslb
@sandroslb 8 месяцев назад
NOT WORK
@DogBattlesofficial
@DogBattlesofficial 4 месяца назад
WHY DONT YOU JUST PUT THE SCRIPT IN THE DESC OMG DUDE ITS SO ANNOYING
@ChikmenComments
@ChikmenComments 4 месяца назад
bro stop being lazy and actually do it yourself, he’s teaching you so be grateful
@DogBattlesofficial
@DogBattlesofficial 4 месяца назад
@@ChikmenComments its hard i dont understand
@ChikmenComments
@ChikmenComments 4 месяца назад
@@DogBattlesofficial ITS NOT THAT HARD, he’s letting you COPY. Just pause whenever u need to write and copy it down
@MemesYT777
@MemesYT777 3 месяца назад
​@@DogBattlesofficial Fr it's not that hard
@rajaabdullahraja4965
@rajaabdullahraja4965 3 месяца назад
@@ChikmenComments Fax
@CMAKdaSILLY
@CMAKdaSILLY 8 месяцев назад
can you please tell me what I did wrong here because it's not working (The name of my part is "Elevator") local ts = game:GetService("TweenService") local Elevator = script.Parent.PrimaryPart local moveUp = 20 local duration = 3 local negative = false local function move(part,negative) local tween if negative then tween = ts:Create(part,TweenInfo.new(duration,Enum.EasingStyle.EassingDirection.Out),{CFrame = part.CFrame = CFrame.new(0,-moveUp,0)}) else tween = ts:Create(part,TweenInfo.new(duration,Enum.EasingStyle.EassingDirection.Out),{CFrame = part.CFrame = CFrame.new(0,moveUp,0)}) end negative = not negative tween:Play() tween.Completed:Connect(function()) move(part,negative) end) end move(Elevator,negative)
@gameNrandom
@gameNrandom 6 месяцев назад
2 months late but you put "eassing" and not "easing"
@CMAKdaSILLY
@CMAKdaSILLY 6 месяцев назад
@@gameNrandom Oh didn’t see that before lol
@YellowXI
@YellowXI 26 дней назад
GUYS i added exact script and the name of choice, wha did i else done wrong? local ts = game:GetService("TweenService") local border = script.Parent.PrimaryPart local moveUp = 20 local duration = 1 local negative = false local function move(part,negative) local tween if negative then tween = ts:Create(part,TweenInfo.new(duration,Enum.EasingStyle.Linear,Enum.EasingDirection.Out),{CFrame = part.CFrame * CFrame.new(0,-moveUp,0)}) else tween = ts:Create(part,TweenInfo.new(duration,Enum.EasingStyle.Linear,Enum.EasingDirection.Out),{CFrame = part.CFrame * CFrame.new(0,moveUp,0)}) end negative = not negative tween:Play() tween.Completed:Connect(function()) move(part,negative) end) end move(border,negative)
@RandomDylan
@RandomDylan 3 дня назад
for anyone thats too lazy to write the script here local ts = game:GetService("TweenService") local border = script.Parent.PrimaryPart local moveUp = 20 local duration = 1 local negative = false local function move(part,negative) local tween if negative then tween = ts:Create(part,TweenInfo.new(duration,Enum.EasingStyle.Linear,Enum.EasingDirection.Out),{CFrame = part.CFrame * CFrame.new(0,-moveUp,0)}) else tween = ts:Create(part,TweenInfo.new(duration,Enum.EasingStyle.Linear,Enum.EasingDirection.Out),{CFrame = part.CFrame * CFrame.new(0,moveUp,0)}) end negative = not negative tween:Play() tween.Completed:Connect(function() move(part,negative) end) end move(border,negative)
@EuphoricRain
@EuphoricRain 5 месяцев назад
SCRIPT FOR SILLY PEOPLE: ---border is your platform local border = script.Parent.PrimaryPart local moveUp = 20 local duration = 2 local negative = false local function move(part,negative) local tween if negative then tween = ts:Create(part,TweenInfo.new(duration,Enum.EasingStyle.Linear,Enum.EasingDirection.Out),{CFrame = part.CFrame * CFrame.new(0,-moveUp,0)}) else tween = ts:Create(part,TweenInfo.new(duration,Enum.EasingStyle.Linear,Enum.EasingDirection.Out),{CFrame = part.CFrame * CFrame.new(0,moveUp,0)}) end negative = not negative tween:Play() tween.Completed:Connect(function() move(part,negative) end) end move(border,negative)
@SupremeBacon.
@SupremeBacon. 3 месяца назад
ty :>
@SeyroxBS
@SeyroxBS 2 месяца назад
W guy
@ZoomToonStudios
@ZoomToonStudios 2 месяца назад
--Script: local ts = game:GetService("TweenService") local border = script.Parent.PrimaryPart local moveUp = 20 local duration = 2 local negative = false local function move(part,negative) local tween if negative then tween = ts:Create(part,TweenInfo.new(duration,Enum.EasingStyle.Linear,Enum.EasingDirection.Out),{CFrame = part.CFrame * CFrame.new(0,-moveUp,0)}) else tween = ts:Create(part,TweenInfo.new(duration,Enum.EasingStyle.Linear,Enum.EasingDirection.Out),{CFrame = part.CFrame * CFrame.new(0,moveUp,0)}) end negative = not negative tween:Play() tween.Completed:Connect(function() move(part,negative) end) end move(border,negative) -- I recommend learning to script instead of copying this.... Anyways, God Bless! ✝
@e1kzanRBLX
@e1kzanRBLX Месяц назад
Cheers
@YellowXI
@YellowXI 26 дней назад
im confused, is the "move(border,negative)" included? or wha
@ZoomToonStudios
@ZoomToonStudios 26 дней назад
@@YellowXI yes
@ZoomToonStudios
@ZoomToonStudios 26 дней назад
@@YellowXI but you can just copy the whole comment and is still going to work, due to the "--" in the text.
@YellowXI
@YellowXI 20 дней назад
@@ZoomToonStudios I tried and it won't work for some, maybe it's part problems or some
Далее
Roblox - Make a Moving Platform that Moves Players
8:39
How to make a part move with a button!
2:54
Просмотров 4,1 тыс.
I scripted YOUR Roblox Ideas..
2:40
Просмотров 166
that one dinky ass kirby song except it loops
30:32
Просмотров 782 тыс.
Advanced Civilian AI | Roblox Showcase
2:13
Просмотров 312 тыс.
The EASIEST Beginner Guide to Scripting (Roblox)
48:39