Тёмный

Make a moving platform in Roblox Studio! [TUTORIAL] 

Pandastroyer
Подписаться 10 тыс.
Просмотров 60 тыс.
50% 1

A quick tutorial that'll show you how to make a working moving platform in your Roblox game! Use this moving platform to violently ram your friends into a wall when they aren't looking.
Hope you enjoy :D
#roblox #studio #robloxstudio #robloxstudiotutorial #tutorial #help #guide #gaming #games #funny #fun #memes #viral #viralvideo #memes #meme #videogames #coding #code #developer #programming #subscribe #tutorial #robloxtutorial #codingtutorial

Игры

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

 

27 июн 2023

Поделиться:

Ссылка:

Скачать:

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

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 222   
@KittDevv
@KittDevv Год назад
First 😃
@Pandastroyer
@Pandastroyer Год назад
Congrats! Second 😀😄
@thepigxd6704
@thepigxd6704 6 месяцев назад
kids that want attention and they get it bruh
@robinrovenszky9473
@robinrovenszky9473 6 месяцев назад
@@thepigxd6704fr
@whiterun9650
@whiterun9650 6 месяцев назад
i hate those who go like "Erm erm i am first 🤓" like bro those are the most fuckin annoying ass people ever
@mantis1231
@mantis1231 5 месяцев назад
It really doesn't matter. It's not gonna make any kind of impact to your own life so why bother with the comment. @@thepigxd6704
@TigerPlaysRbx52923
@TigerPlaysRbx52923 5 месяцев назад
heres the script: local main = script.parent local part1 = game.workspace.part1 local part2= game.workspace.part2 localbodypos=instance.new("bodyposition") bodyPos.Parent = main while wait() do bodyPos.Position = part1.Position wait(1) bodyPos.Position = part2.Position wait(1) end (Edit this is the most likes I've ever had😁)
@Toppats_Cookies
@Toppats_Cookies 5 месяцев назад
thank you very much 😄😃😀
@princetbz1102
@princetbz1102 4 месяца назад
thank you. Guys he did make a small error which is that localbodypos needs to be local (space) bodypos that's why it doesn't work
@princetbz1102
@princetbz1102 4 месяца назад
also capital Instance but you saved a lot of time
@mrvehf
@mrvehf 4 месяца назад
ty!
@limitqd
@limitqd 4 месяца назад
@NERSCH0711
@NERSCH0711 Месяц назад
Awesome tutorial! Thank you so much!
@Smurfis
@Smurfis 4 месяца назад
This is very interesting, nice concept glad it’s working out for you. I’d also like to suggest you don’t use a while true loop to execute this as it will create lag. My genuine belief is actually that you’re going to want to make local condition = true while condition do -- Your code here if some_condition then condition = false end end Trigger and break the condition, to reduce lag you could have the platform move from one desired place to the alternative. If you have also got multiple of these in your place expect lag.
@Chinmay-ft8pm
@Chinmay-ft8pm 9 месяцев назад
Wow i didnt think that this would be so easy, thanks a lot!!! ❤
@extraelmin42
@extraelmin42 4 месяца назад
same
@jestersam1000-7
@jestersam1000-7 12 дней назад
⁠@@extraelmin42nah same too
@THEcatinamicrowave
@THEcatinamicrowave Месяц назад
To fix the rotating issue, you could make another invisible part, this time anchored, and spawn an AlignOrientation instance inside the platform which aligns its orientation with the anchored part. That way, it doesn't spin. Edit: Upon further investigation, BodyPosition is deprecated in favor of AlignPosition, which doesn't allow for rotation by default. Optimization, babyyy.
@TheNoSkinGuy_YT
@TheNoSkinGuy_YT Месяц назад
yo
@Stigbdd
@Stigbdd 26 дней назад
how do u align it tho?
@Stigbdd
@Stigbdd 26 дней назад
i mean connect
@THEcatinamicrowave
@THEcatinamicrowave 24 дня назад
@@Stigbdd there needs to be a target cframe (like a Part instance or smt) and an attachment in that target cframe which you can plug into the alignposition
@1stDIEmond
@1stDIEmond 2 месяца назад
Nice vid, can you make a tutorial where a part from sky falls and decelarates like a controllable fall or something
@Mr_Spikez
@Mr_Spikez 7 месяцев назад
Bro THANK YOU I actually want it to tip over for my game :D
@Pandastroyer
@Pandastroyer 7 месяцев назад
Nice!! It’s all set for you then! :DD
@detecctivd5983
@detecctivd5983 6 месяцев назад
local main = script.Parent local part1 = game.Workspace.Part1 local part2 = game.Workspace.Part2 local bodyPos = Instance.new("BodyPosition") bodyPos.Parent = main while wait() do bodyPos.Position = part1.Position wait(1) bodyPos.Position = part2.Position wait(1) end
@Shortestcoment
@Shortestcoment 5 месяцев назад
my hero
@dinosaurcool86
@dinosaurcool86 5 дней назад
gracias daddy
@LeapInno
@LeapInno 7 месяцев назад
Nice tutorial idea.
@Zozo_official
@Zozo_official 7 месяцев назад
hello im making a old style roblox game problem is the part doesnt move the player does it have to do with the animations i added or what
@BlueGD703
@BlueGD703 5 месяцев назад
how do you make it so that the block moves below the player and changes y axis with the player but only when the player isnt mid air
@Stigbdd
@Stigbdd 26 дней назад
i did everything the same but my part just keeps falling to the floor (it does move tho)
@AriesLT-nu4ng
@AriesLT-nu4ng 2 месяца назад
tysm Pandastroyer! :)
@JohnrobTerre-v2m
@JohnrobTerre-v2m 6 дней назад
Nice tutorial Although, I wanna ask how I'd do this if it's path is a curve? I was planning on making cars move on a fixed road with a lot of curves. Thank you
@undeleteduser
@undeleteduser 5 месяцев назад
Thank you very much! Detailed, explainable and simple, ill combine it with a camera script to make the part be the focus of the camera and therefore will make the camera move.
@dariolytten3854
@dariolytten3854 27 дней назад
the problem with mine is because it's unanchored, it first falls and then starts moving because mine is like a pole
@PricedarkevilAlt
@PricedarkevilAlt 7 месяцев назад
Hi can you do a clickable part that teleports you (then it only allows gear/tools)
@ForeverToaster
@ForeverToaster 10 месяцев назад
Can you explain how this works, and why it doesn’t just snap straight to the position?
@William-bu4sj
@William-bu4sj 3 месяца назад
Its because he put the wait script on so it wait before going straight to the other one. I mean the script waits 1 so the block has 1 time to get to the part When the 1 has passed it Goes to the other. If the 1 value was 0 it would snap over to the part
@cowruinz367
@cowruinz367 2 месяца назад
@@William-bu4sj then why did I put the wait time as 5 and it immediately snapped to each position?
@Thekatbo
@Thekatbo 7 месяцев назад
how do i make it so when you click a button it moves?
@scenoveob1336
@scenoveob1336 3 месяца назад
Can you adjust the velocity of the part?
@beikon999
@beikon999 Год назад
3RD! And we can make more than 2 points of moving? Like 4 or 3, that its because i want to make a core game
@Pandastroyer
@Pandastroyer Год назад
Sure! All you have to do is create as much points as you want and add them to the script. I would give you the script for that, but I’m not able to do it right now. But I’ll do it as soon as I can! :D
@Limecody
@Limecody Месяц назад
Ty
@mursu324
@mursu324 4 месяца назад
how do i make it that it moves from part 1 to part 2 destroys itself waits a random time and repeats
@jeshronambait7813
@jeshronambait7813 8 месяцев назад
this is the one i need to learn about how to make i search so many but this one very helpful to me
@Pandastroyer
@Pandastroyer 7 месяцев назад
I’m glad to hear that!
@nvrrr__-__-__-_._
@nvrrr__-__-__-_._ 3 месяца назад
thank you
@Pandastroyer
@Pandastroyer 2 месяца назад
You're welcome :)
@B.U.E
@B.U.E 4 месяца назад
Can you make the tutorial but for train ?
@VirusBeak
@VirusBeak Год назад
Whenever I start my game my part just ragdolls to the floor Here is my script: local main = script.Parent local part1 = game.Workspace.MovingPartAP1 local part2 = game.Workspace.MovingPartAP2 local bodyPos = Instance.new ("BodyPosition") bodyPos.Parent = main while wait() do bodyPos.Position = part1.Position wait(1) bodyPos.Position = part2.Position wait(1) end If anyone could help I would really appreciate it!
@developer225
@developer225 11 месяцев назад
anchor it?
@VirusBeak
@VirusBeak 11 месяцев назад
@@developer225 if its anchored the part will just stay still
@mayzaki3699
@mayzaki3699 11 месяцев назад
anchor it
@VirusBeak
@VirusBeak 11 месяцев назад
@@mayzaki3699 Read the comment abpve
@Ptero9119
@Ptero9119 11 месяцев назад
Try to fix it's position on Hight, with script
@neelamverma445
@neelamverma445 2 месяца назад
if i put the platform unacnhored it keeps falling please someone tell me how to fix 😭
@user-fd4sk8ev4d
@user-fd4sk8ev4d 8 месяцев назад
Thank you, this was helpful. I just have a question though. How do you make the block move towards the players❓
@Prismathicz921
@Prismathicz921 7 месяцев назад
idk if it gonna work since im a beginner, but i think you have to replace the block position by the player position
@user-fd4sk8ev4d
@user-fd4sk8ev4d 7 месяцев назад
@@Prismathicz921 Thank you for the reply but how do you do that?
@astrid_lo
@astrid_lo 7 месяцев назад
​@@user-fd4sk8ev4d also a beginner here! if i had to guess i'll try to find the HumanoidRootPart of the player? if so we would need the player, it's character, find the HumanoidRootPart and it's Cframe (will probably have to do something like WaitForChild() or wait for the player character to load so you don't get any errors). local plr = game.Players.LocalPlayer repeat wait() until plr.Character local char = plr.Character local HumanoidRootPart_ = char:FindFirstChild("HumanoidRootPart") and to have it's CFrame you could just add.Cframe like so : char:FindFirstChild("HumanoidRootPart").CFrame all of this was found on a random post on the devforum about someone trying to teleport a player. so i recommend you really understand the script and what it's doing (HumanoidRootPart might be bit tricky to understand even on the documentation if you've never rigged a character on roblox studio before) and stuff but i'm pretty sure you can easily find lots and lots of documentation and if it's not enough then some posts on the roblox devforum explaining just that 👍.
@Zipstar1._
@Zipstar1._ Месяц назад
Can you make a button for it? When you click it; the platform starts moving.
@OfficialAdventureStudios
@OfficialAdventureStudios Год назад
Hi! I watched the tutorial but the platform in the middle keeps falling down, it moves back and forth but for some reason it won't stay in the air. And if i anchor the platform it just stays still and doesn't move back and forth, what should i do?
@Pandastroyer
@Pandastroyer Год назад
Hello! Sorry to hear that. Is it fine if I may have a look at your script?
@OfficialAdventureStudios
@OfficialAdventureStudios Год назад
@@Pandastroyer Yes thx! I just copied and pasted it here local main = script.Parent local part1 = game.Workspace.Part1 local part2 = game.Workspace.Part2 local bodyPos = Instance.new("BodyPosition") bodyPos.Parent = main while wait() do bodyPos.Position = part1.Position wait(1) bodyPos.Position = part2.Position wait(1) end
@Ptero9119
@Ptero9119 11 месяцев назад
try to anchori t and try othere stuuf, if won't help make a script wich will fix parts position on hight
@redfluff48
@redfluff48 11 месяцев назад
anchor it
@sixle_RL
@sixle_RL 11 месяцев назад
Are your destination parts anchored???
@Drago999BloxFruits
@Drago999BloxFruits 2 месяца назад
for me the part aint working why no scripts i try work
@Pink69420
@Pink69420 Год назад
Hi, I love the video! How do you make it so when you step on teh moving block, it does not tip over
@Pandastroyer
@Pandastroyer Год назад
Hi! I recommend making the platform bigger so that it doesn’t tip. :)
@Pink69420
@Pink69420 Год назад
@@Pandastroyer Thank you for the reply! do I also have to make those 2 blocks bigger? because if I make the plateform bigger it will not move at all
@Ronthedon485
@Ronthedon485 10 месяцев назад
my platform just simply doesnt move idk why just say if u want my script
@Robtux
@Robtux 6 месяцев назад
When I make the main part bigger, The script doesn't work and makes the part fall. How do I make the main part bigger and prevent it from falling?
@lazerlight3385
@lazerlight3385 5 месяцев назад
use different method this one sucks
@tinazonn
@tinazonn 9 месяцев назад
use a BodyGyro to prevent the part from rotating when a player steps on it.
@Absycal
@Absycal 8 месяцев назад
how do you apply that?
@awicaem5407
@awicaem5407 8 месяцев назад
Maybe local bodygyro = instance.new("BodyGyro")
@tinazonn
@tinazonn 6 месяцев назад
@@Absycal add a BodyGyro object to the part then set the MaxForce very high so it completely stops the part from rotating
@Absycal
@Absycal 6 месяцев назад
alr thanks@@tinazonn
@BloxxerBoi_m134
@BloxxerBoi_m134 9 месяцев назад
How to make the platform not tip over, even if it's small?
@user-fd4sk8ev4d
@user-fd4sk8ev4d 8 месяцев назад
What I did was I added another block underneath the moving block and turned the block underneath completely invisible then welded both of them together. Make sure the invisible block is wider than the moving block though. Does this make sense and do you know how to weld in roblox studio❓ If not let me know.
@BloxxerBoi_m134
@BloxxerBoi_m134 8 месяцев назад
@@user-fd4sk8ev4d thanks for your info. And yes, I do know how to weld, just go to constraints, then find weldconstraint, and then weld 2 parts together.
@user-fd4sk8ev4d
@user-fd4sk8ev4d 8 месяцев назад
@@BloxxerBoi_m134 You're welcome, did this help? I know how to weld I was just making sure you knew but thank you.
@mathiasanscott4224
@mathiasanscott4224 8 месяцев назад
@@BloxxerBoi_m134 you could also do this using join surfaces
@greengreengreengreengreengreen
@greengreengreengreengreengreen 4 месяца назад
I only came here to see how to stick to a part.🤣🤣
@epicmangaming3841
@epicmangaming3841 2 месяца назад
can it work with meshes?
@skitkakans_riktiga_yt
@skitkakans_riktiga_yt 4 месяца назад
how do i make it go slower when moving? i know how to make the pauses slower but not the speed of the platform
@Zipstar1._
@Zipstar1._ Месяц назад
Just increase the wait() command
@TondonStudios
@TondonStudios 25 дней назад
I havent bodyposition in front of mypatr☹️
@cloudydonutshd1497
@cloudydonutshd1497 5 месяцев назад
Actual Script: local main = script.parent local part1 = game.workspace.Part1 local part2= game.workspace.Part2 local bodyPos = Instance.new("BodyPosition") bodyPos.Parent = main while wait() do bodyPos.Position = part1.Position wait(1) bodyPos.Position = part2.Position wait(1) end
@Vrethrenz
@Vrethrenz 5 месяцев назад
My platform doesn't want to move! please help!
@SlimeyStarts-fn3nb
@SlimeyStarts-fn3nb 19 дней назад
It doesn't work for me, the part just keeps falling.
@cereaL6
@cereaL6 3 месяца назад
print("Hello world!")
@cereaL6
@cereaL6 3 месяца назад
it never works when i try it
@NonNoobber
@NonNoobber 29 дней назад
im using a car mesh the problem is the car just teleports not moves
@DummyDom_
@DummyDom_ 18 дней назад
It only works on parts but not Meshes. I tried to make a shark move by using this script but it didnt work :(
@Riyan_YT2
@Riyan_YT2 Месяц назад
local main = script.parent local part1 = game.workspace.part1 local part2= game.workspace.part2 localbodypos=instance.new("bodyposition") bodyPos.Parent = main while wait() do bodyPos.Position = part1.Position wait(1) bodyPos.Position = part2.Position wait(1) end
@Jkmjst
@Jkmjst Месяц назад
yall my part ran away into the distance
@yunomikels
@yunomikels Месяц назад
can you respawn it ?
@vanessagrosser6002
@vanessagrosser6002 7 месяцев назад
I’m just going to use this infor for my tower defense game
@Pandastroyer
@Pandastroyer 7 месяцев назад
Awesome! :)
@ItPindit
@ItPindit 4 месяца назад
I have a question. Can you make the platform have 3 stops?
@Pandastroyer
@Pandastroyer 4 месяца назад
Yep! Just add an extra destination part and it’s own separate variable in the code
@ItPindit
@ItPindit 4 месяца назад
@@Pandastroyer oh, alright. Thanks!
@LegalizedManokEater0
@LegalizedManokEater0 11 месяцев назад
how do you make it so it goes slower when it moves?
@Sunnny1x1_
@Sunnny1x1_ 10 месяцев назад
bruuuuuuuuuuuuuuuuuuuuuuh, whatch hte vidddd
@user-fd4sk8ev4d
@user-fd4sk8ev4d 8 месяцев назад
You change the number inside the wait() commands. There are a few places in the block of code that says wait(1). To Make it go slower you change the number to a number bigger than one. Does this help, If not let me know?
@cashton446
@cashton446 9 месяцев назад
How can this be applied on Roblox characters?
@vecremser2226
@vecremser2226 8 месяцев назад
Have the local main equal your characters torso. So instead of local main = Script.Parent, you would have it be local main = Script.Parent.Torso. This works because your players torso is a part.
@bluar.
@bluar. 4 месяца назад
wow it doesnt need tween service
@Toastt.
@Toastt. 10 месяцев назад
İ tried it in the air and it just fell down and didnt move and when i anchored it you guessed it it stayed still here are my codes local main = script.Parent local part1 = game.Workspace.Part1 local part2 = game.Workspace.Part2 local bodyPos = İInstance.new("BodyPosition") bodyPos.Parent = main while wait()do bodyPos.Position = part1.Position wait(3) bodyPos.Position = part1.Position wait(3) end
@liamwinter2445
@liamwinter2445 9 месяцев назад
same it just wont work as for me it works only across ground
@Hello-ue9tj
@Hello-ue9tj 2 месяца назад
It's "Instance" not "İInstance". Hope it helped although this was 7 months ago :D
@Hello-ue9tj
@Hello-ue9tj 2 месяца назад
mb I made a mistake. BodyPosition was recently removed so it does not work anymore sadly.
@quasimo15210
@quasimo15210 8 месяцев назад
How do I do this but with an entire model?
@_somosa_gamer_
@_somosa_gamer_ 8 месяцев назад
Choose the base Part of your model where u want the player to stand. Then weld all the other parts to the base part. Modify the script accordingly.
@MrChicken-db1ms
@MrChicken-db1ms 3 дня назад
i dont know why but its not working for me
@FAST_LIFTING_SIMULATOR
@FAST_LIFTING_SIMULATOR 5 месяцев назад
i do it same, but script isn't working
@hypernaturalgames9516
@hypernaturalgames9516 5 месяцев назад
You have to rename the two parts objects to Part1 and Part2
@converted36
@converted36 5 месяцев назад
it works, but it falls to the ground. i need it to float
@hypersniper1464
@hypersniper1464 4 месяца назад
go to the properties of the platform and turn on massless, when I did that it worked
@40sulman
@40sulman 3 месяца назад
​@@hypersniper1464 it works cuz massless gives the part a weight of 0 so it doesn't fall
@H4NN0TT
@H4NN0TT 3 месяца назад
mine just fall
@husky_games_123
@husky_games_123 16 дней назад
it dose not work for me
@rblox2729
@rblox2729 10 месяцев назад
how do you make it stable
@Pandastroyer
@Pandastroyer 10 месяцев назад
Sorry, but could you please elaborate? :)
@metalurji3
@metalurji3 9 месяцев назад
​@@Pandastroyerhe means how to ride it without the platform rotating
@tinazonn
@tinazonn 9 месяцев назад
use a BodyGyro
@ancientone5633
@ancientone5633 2 месяца назад
hey man, do you know how to make it immovable by players?
@NonNoobber
@NonNoobber Месяц назад
imma try anchoring it
@ancientone5633
@ancientone5633 Месяц назад
@@NonNoobber anchoring it would make it unable to move iirc, i gave up on roblox studio for now lol
@TheBoyzsog
@TheBoyzsog 3 месяца назад
Im just saying there's a thing called tween
@AidensheriffVR
@AidensheriffVR 3 месяца назад
it did not work but u still got a sub
@Nightergamer
@Nightergamer 2 месяца назад
Doesn't work. I tried and it won't move
@Pandastroyer
@Pandastroyer 2 месяца назад
Sorry to hear that. However I did check it a couple of days ago and it still works. If you could paste your script down, I’d be happy to help out :)
@macabreoven
@macabreoven 11 месяцев назад
Followed the script perfectly, but the platform simply won’t move at all. It will just lie on the floor
@Pandastroyer
@Pandastroyer 11 месяцев назад
I see. Is it fine if I can still see your script, though? But also check if the parts are correctly anchored. :)
@redfluff48
@redfluff48 11 месяцев назад
anchor it
@mathiashansen2424
@mathiashansen2424 8 месяцев назад
@@Pandastroyer I have the same problem i also followed the script correctly and anchored the parts and named them correctly but it still wont work. Here is the script: local main = script.Parent local part1 = game.Workspace.Part1 local part2 = workspace.Part2 local bodyPos = Instance.new("BodyPosition") bodyPos.Parent = main while wait() do bodyPos.Position = part1.Position wait(3) bodyPos.Position = part2.Position wait(3) end
@40sulman
@40sulman 3 месяца назад
Oh for local part2 you did workspace.part2 it's supposed to be game.workspace.part2​@@mathiashansen2424
@fakesunvn2013notreal
@fakesunvn2013notreal 7 месяцев назад
it doesnt work :(
@WhiteFox012
@WhiteFox012 11 месяцев назад
roblox studio remove the bodyposition :)
@Pandastroyer
@Pandastroyer 11 месяцев назад
bruh :(
@cryptorai6713
@cryptorai6713 11 месяцев назад
what script should i put now?
@tinazonn
@tinazonn 9 месяцев назад
you can still use it, it's just deprecated, meaning you shouldn't be using it for new work. AlignPosition should be used instead.
@macstorm2234
@macstorm2234 9 месяцев назад
you are a life saver@@tinazonn
@user-xh1qo5bn7s
@user-xh1qo5bn7s 2 месяца назад
dosent work
@StanScott-wi8cj
@StanScott-wi8cj 3 месяца назад
doesn't work
@fofinhopt1776
@fofinhopt1776 3 месяца назад
doesnt work for me ;-;
@Bluekoalaplayzz
@Bluekoalaplayzz 3 месяца назад
Same
@GreenPlayzRobloxRF
@GreenPlayzRobloxRF 5 месяцев назад
It Didnt work
@starlordplays9187
@starlordplays9187 4 месяца назад
It doesn't work
@jessicamousseau7716
@jessicamousseau7716 Месяц назад
Didn't work.
@knowledgemax_
@knowledgemax_ 10 месяцев назад
IT IS NOT WORKING! IT KEEPS FALLING DOWN!
@progaming-yf3zf
@progaming-yf3zf 10 месяцев назад
Anchor it
@knowledgemax_
@knowledgemax_ 10 месяцев назад
Then it won't move. Also how do I keep it from tipping over when I stand on it like toh?@@progaming-yf3zf
@santiago10xtreme
@santiago10xtreme 10 месяцев назад
It has anchor?
@tinazonn
@tinazonn 9 месяцев назад
no don't anchor it, that will just stop it from moving entirely. use a BodyGyro to stop it from rotating about.
@Nightzstuff
@Nightzstuff 6 месяцев назад
Part.Anchored = true
@E-200gaming
@E-200gaming 5 месяцев назад
Doesn't Work!
@DanielTorres-rs2fw
@DanielTorres-rs2fw 6 месяцев назад
This dont work
@Personafandegojo
@Personafandegojo 2 месяца назад
didnt worked
@fit1806
@fit1806 2 месяца назад
dosnt work. dont do its a waste of your time
@GFI_Gaming
@GFI_Gaming 17 дней назад
worked for me
@ruthackert7266
@ruthackert7266 8 дней назад
It just sounds like a skill issue for him..
@countyballsdone8021
@countyballsdone8021 2 месяца назад
idk but it dierperd when i test my game idk why?
@Thunderboltster76682
@Thunderboltster76682 6 месяцев назад
This script did not work. Here is a script which worked for me: local TweenService = game:GetService("TweenService") local RunService = game:GetService("RunService") local part = script.Parent CHANGE THIS '2' TO CHANGE SPEED(HIGHER =SLOWER SPEED) local tweenInfo = TweenInfo.new(2, Enum.EasingStyle.Cubic, Enum.EasingDirection.InOut, -1, true) local tween = TweenService:Create(part, tweenInfo, { CFrame = part.CFrame * CFrame.new(0, 0, -10)
@henry_xp2982
@henry_xp2982 6 месяцев назад
Appreciate it, truly. I've been searching for a working one for a while but couldnt find one so thank you
@CheeseManXD
@CheeseManXD 2 месяца назад
local main = script.Parent local part1 = game.Workspace.part1 local part2 = game.Workspace.part2 local bodyPos = Instance.new("BodyPosition") bodyPos.Parent = main while wait() do bodyPos.Position = part1.Position wait(5) bodyPos.Position = part2.Position wait(5) end
@1_the1st_1
@1_the1st_1 10 месяцев назад
local main = script.Parent local part1 = game.Workspace.Part1 local part2=game.workspace.Part2 local bodyPos=Instance.new["BodyPosition"] bodyPos.Parent = main while wait() do bodyPos.Position = part1.Position wait(1) bodyPos.Position = part2.Position wait(1) end
@lululelec
@lululelec 8 месяцев назад
you forgot a space
@lululelec
@lululelec 8 месяцев назад
no two at local part = game
@nintengon9665
@nintengon9665 3 месяца назад
doesn't work
@Pandastroyer
@Pandastroyer 3 месяца назад
Sorry to hear that. However I did test the script yesterday and it seems to work just fine. If you could, please send your script so that I can possibly help you with the issue you're facing :)
@justgamer89
@justgamer89 5 месяцев назад
It doesn't work
@Pandastroyer
@Pandastroyer 5 месяцев назад
Sorry to hear that. It would be great if you could specify what didn’t work if you could so I might help
Далее
The best way to animate for free.. (Part 2)
2:41
Просмотров 8 тыс.
⚡️Uylanishim kerak, sovchilikka borasizmi?...😅
00:50
How To Move Parts In Roblox Studio With TweenService
1:00
How To Animate VFX (moon animator)
2:06
Просмотров 84 тыс.
How to make a Trampoline in Roblox Studio!
1:41
УРААААА! НЕМЛЕСС КРАФТ
1:26:53
Просмотров 225 тыс.