Make a moving platform in Roblox Studio! [TUTORIAL]

แชร์
ฝัง
  • เผยแพร่เมื่อ 27 มิ.ย. 2023
  • 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
  • เกม

ความคิดเห็น • 212

  • @KittDevv
    @KittDevv 11 หลายเดือนก่อน +26

    First 😃

    • @Pandastroyer
      @Pandastroyer  11 หลายเดือนก่อน +7

      Congrats! Second 😀😄

    • @thepigxd6704
      @thepigxd6704 6 หลายเดือนก่อน +7

      kids that want attention and they get it bruh

    • @robinrovenszky9473
      @robinrovenszky9473 5 หลายเดือนก่อน

      @@thepigxd6704fr

    • @whiterun9650
      @whiterun9650 5 หลายเดือนก่อน +1

      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 หลายเดือนก่อน +3

      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 4 หลายเดือนก่อน +66

    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

    • @Toppats_Cookies
      @Toppats_Cookies 4 หลายเดือนก่อน +1

      thank you very much 😄😃😀

    • @princetbz1102
      @princetbz1102 3 หลายเดือนก่อน +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 3 หลายเดือนก่อน

      also capital Instance but you saved a lot of time

    • @mrvehf
      @mrvehf 3 หลายเดือนก่อน

      ty!

    • @limitqd
      @limitqd 3 หลายเดือนก่อน

  • @Chinmay-ft8pm
    @Chinmay-ft8pm 9 หลายเดือนก่อน +6

    Wow i didnt think that this would be so easy, thanks a lot!!! ❤

  • @Smurfis
    @Smurfis 3 หลายเดือนก่อน +1

    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.

  • @detecctivd5983
    @detecctivd5983 5 หลายเดือนก่อน +8

    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

  • @NERSCH0711
    @NERSCH0711 5 วันที่ผ่านมา

    Awesome tutorial! Thank you so much!

  • @THEcatinamicrowave
    @THEcatinamicrowave 15 วันที่ผ่านมา +2

    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.

    • @Kiryu_legendary
      @Kiryu_legendary 14 วันที่ผ่านมา

      yo

    • @Stigbdd
      @Stigbdd 2 ชั่วโมงที่ผ่านมา

      how do u align it tho?

    • @Stigbdd
      @Stigbdd 2 ชั่วโมงที่ผ่านมา

      i mean connect

  • @sigma_spikez
    @sigma_spikez 6 หลายเดือนก่อน +1

    Bro THANK YOU I actually want it to tip over for my game :D

    • @Pandastroyer
      @Pandastroyer  6 หลายเดือนก่อน

      Nice!! It’s all set for you then! :DD

  • @Unit-349
    @Unit-349 หลายเดือนก่อน +1

    Nice vid, can you make a tutorial where a part from sky falls and decelarates like a controllable fall or something

  • @undeleteduser
    @undeleteduser 4 หลายเดือนก่อน

    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.

  • @ForeverToaster
    @ForeverToaster 9 หลายเดือนก่อน +15

    Can you explain how this works, and why it doesn’t just snap straight to the position?

    • @William-bu4sj
      @William-bu4sj 2 หลายเดือนก่อน

      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 หลายเดือนก่อน

      @@William-bu4sj then why did I put the wait time as 5 and it immediately snapped to each position?

  • @dariolytten3854
    @dariolytten3854 วันที่ผ่านมา

    the problem with mine is because it's unanchored, it first falls and then starts moving because mine is like a pole

  • @BlueGD703
    @BlueGD703 4 หลายเดือนก่อน

    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

  • @user-fd4sk8ev4d
    @user-fd4sk8ev4d 7 หลายเดือนก่อน +3

    Thank you, this was helpful. I just have a question though. How do you make the block move towards the players❓

    • @Prismathicz921
      @Prismathicz921 6 หลายเดือนก่อน +1

      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 6 หลายเดือนก่อน

      @@Prismathicz921 Thank you for the reply but how do you do that?

    • @astrid_lo
      @astrid_lo 6 หลายเดือนก่อน

      ​@@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 👍.

  • @LeapInno
    @LeapInno 6 หลายเดือนก่อน

    Nice tutorial idea.

  • @Stigbdd
    @Stigbdd 7 ชั่วโมงที่ผ่านมา +1

    i did everything the same but my part just keeps falling to the floor (it does move tho)

  • @Zozo_official
    @Zozo_official 6 หลายเดือนก่อน

    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

  • @PricedarkevilAlt
    @PricedarkevilAlt 6 หลายเดือนก่อน

    Hi can you do a clickable part that teleports you (then it only allows gear/tools)

  • @beikon999
    @beikon999 11 หลายเดือนก่อน +3

    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  11 หลายเดือนก่อน +1

      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

  • @jeshronambait7813
    @jeshronambait7813 7 หลายเดือนก่อน +2

    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  6 หลายเดือนก่อน

      I’m glad to hear that!

  • @mursu324
    @mursu324 3 หลายเดือนก่อน

    how do i make it that it moves from part 1 to part 2 destroys itself waits a random time and repeats

  • @AriesLT-nu4ng
    @AriesLT-nu4ng หลายเดือนก่อน

    tysm Pandastroyer!
    :)

  • @Zipstar1._
    @Zipstar1._ 18 วันที่ผ่านมา

    Can you make a button for it? When you click it; the platform starts moving.

  • @scenoveob1336
    @scenoveob1336 3 หลายเดือนก่อน

    Can you adjust the velocity of the part?

  • @TheOfficialSOKT
    @TheOfficialSOKT 3 หลายเดือนก่อน +2

    Can you make the tutorial but for train ?

  • @VirusBeak
    @VirusBeak 11 หลายเดือนก่อน +22

    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 10 หลายเดือนก่อน

      anchor it?

    • @VirusBeak
      @VirusBeak 10 หลายเดือนก่อน +1

      @@developer225 if its anchored the part will just stay still

    • @mayzaki3699
      @mayzaki3699 10 หลายเดือนก่อน

      anchor it

    • @VirusBeak
      @VirusBeak 10 หลายเดือนก่อน

      @@mayzaki3699 Read the comment abpve

    • @Ptero9119
      @Ptero9119 10 หลายเดือนก่อน

      Try to fix it's position on Hight, with script

  • @neelamverma445
    @neelamverma445 หลายเดือนก่อน

    if i put the platform unacnhored it keeps falling
    please someone tell me how to fix 😭

  • @Pink69420
    @Pink69420 11 หลายเดือนก่อน +1

    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  11 หลายเดือนก่อน

      Hi! I recommend making the platform bigger so that it doesn’t tip. :)

    • @Pink69420
      @Pink69420 11 หลายเดือนก่อน

      @@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

  • @Thekatbo
    @Thekatbo 6 หลายเดือนก่อน

    how do i make it so when you click a button it moves?

  • @tinazonn
    @tinazonn 8 หลายเดือนก่อน

    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 7 หลายเดือนก่อน

      Maybe local bodygyro = instance.new("BodyGyro")

    • @tinazonn
      @tinazonn 5 หลายเดือนก่อน

      @@Absycal add a BodyGyro object to the part then set the MaxForce very high so it completely stops the part from rotating

    • @Absycal
      @Absycal 5 หลายเดือนก่อน

      alr thanks@@tinazonn

  • @OfficialAdventureStudios
    @OfficialAdventureStudios 11 หลายเดือนก่อน +4

    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  11 หลายเดือนก่อน +2

      Hello! Sorry to hear that. Is it fine if I may have a look at your script?

    • @OfficialAdventureStudios
      @OfficialAdventureStudios 11 หลายเดือนก่อน +2

      @@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 10 หลายเดือนก่อน +1

      try to anchori t and try othere stuuf, if won't help make a script wich will fix parts position on hight

    • @redfluff48
      @redfluff48 10 หลายเดือนก่อน +1

      anchor it

    • @Squimpus_
      @Squimpus_ 10 หลายเดือนก่อน +1

      Are your destination parts anchored???

  • @Limecody
    @Limecody 21 วันที่ผ่านมา

    Ty

  • @NonNoobber
    @NonNoobber 3 วันที่ผ่านมา

    im using a car mesh
    the problem is the car just teleports not moves

  • @cloudydonutshd1497
    @cloudydonutshd1497 4 หลายเดือนก่อน +2

    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

  • @CatNap_YT2
    @CatNap_YT2 หลายเดือนก่อน +1

    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

  • @nvrrr__-__-__-_._
    @nvrrr__-__-__-_._ 2 หลายเดือนก่อน +1

    thank you

    • @Pandastroyer
      @Pandastroyer  2 หลายเดือนก่อน

      You're welcome :)

  • @Robtux
    @Robtux 5 หลายเดือนก่อน

    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 หลายเดือนก่อน +3

      use different method this one sucks

  • @greengreengreengreengreengreen
    @greengreengreengreengreengreen 3 หลายเดือนก่อน

    I only came here to see how to stick to a part.🤣🤣

  • @Drago999BloxFruits
    @Drago999BloxFruits หลายเดือนก่อน

    for me the part aint working why no scripts i try work

  • @Ronthedon485
    @Ronthedon485 9 หลายเดือนก่อน

    my platform just simply doesnt move idk why just say if u want my script

  • @epicmangaming3841
    @epicmangaming3841 2 หลายเดือนก่อน

    can it work with meshes?

  • @Vrethrenz
    @Vrethrenz 4 หลายเดือนก่อน

    My platform doesn't want to move! please help!

  • @cereaL6
    @cereaL6 2 หลายเดือนก่อน +1

    it never works when i try it

  • @cereaL6
    @cereaL6 2 หลายเดือนก่อน

    print("Hello world!")

  • @BloxxerBoi_m134
    @BloxxerBoi_m134 8 หลายเดือนก่อน +2

    How to make the platform not tip over, even if it's small?

    • @user-fd4sk8ev4d
      @user-fd4sk8ev4d 7 หลายเดือนก่อน

      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 7 หลายเดือนก่อน +1

      @@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 7 หลายเดือนก่อน

      @@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 7 หลายเดือนก่อน

      @@BloxxerBoi_m134 you could also do this using join surfaces

  • @skitkakans_riktiga_yt
    @skitkakans_riktiga_yt 3 หลายเดือนก่อน

    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._ 18 วันที่ผ่านมา

      Just increase the wait() command

  • @Toastt.
    @Toastt. 9 หลายเดือนก่อน

    İ 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 8 หลายเดือนก่อน

      same it just wont work as for me it works only across ground

    • @Hello-ue9tj
      @Hello-ue9tj หลายเดือนก่อน

      It's "Instance" not "İInstance".
      Hope it helped although this was 7 months ago :D

    • @Hello-ue9tj
      @Hello-ue9tj หลายเดือนก่อน

      mb I made a mistake. BodyPosition was recently removed so it does not work anymore sadly.

  • @spriteisntreal
    @spriteisntreal 15 วันที่ผ่านมา

    can you respawn it ?

  • @ItPindit
    @ItPindit 3 หลายเดือนก่อน +1

    I have a question. Can you make the platform have 3 stops?

    • @Pandastroyer
      @Pandastroyer  3 หลายเดือนก่อน

      Yep! Just add an extra destination part and it’s own separate variable in the code

    • @ItPindit
      @ItPindit 3 หลายเดือนก่อน

      @@Pandastroyer oh, alright. Thanks!

  • @cashton446
    @cashton446 9 หลายเดือนก่อน +1

    How can this be applied on Roblox characters?

    • @vecremser2226
      @vecremser2226 8 หลายเดือนก่อน +2

      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.

  • @vanessagrosser6002
    @vanessagrosser6002 7 หลายเดือนก่อน +1

    I’m just going to use this infor for my tower defense game

  • @Jkmjst
    @Jkmjst 10 วันที่ผ่านมา

    yall my part ran away into the distance

  • @LegalizedManokEater0
    @LegalizedManokEater0 10 หลายเดือนก่อน +1

    how do you make it so it goes slower when it moves?

    • @Sunnny1x1_
      @Sunnny1x1_ 9 หลายเดือนก่อน

      bruuuuuuuuuuuuuuuuuuuuuuh, whatch hte vidddd

    • @user-fd4sk8ev4d
      @user-fd4sk8ev4d 7 หลายเดือนก่อน

      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?

  • @bluar.
    @bluar. 3 หลายเดือนก่อน

    wow it doesnt need tween service

  • @FAST_LIFTING_SIMULATOR
    @FAST_LIFTING_SIMULATOR 4 หลายเดือนก่อน +1

    i do it same, but script isn't working

    • @hypernaturalgames9516
      @hypernaturalgames9516 4 หลายเดือนก่อน +1

      You have to rename the two parts objects to Part1 and Part2

  • @quasimo15210
    @quasimo15210 7 หลายเดือนก่อน

    How do I do this but with an entire model?

    • @Lazy-Developer
      @Lazy-Developer 7 หลายเดือนก่อน

      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.

  • @converted36
    @converted36 4 หลายเดือนก่อน

    it works, but it falls to the ground. i need it to float

    • @hypersniper1464
      @hypersniper1464 3 หลายเดือนก่อน

      go to the properties of the platform and turn on massless, when I did that it worked

    • @40sulman
      @40sulman 2 หลายเดือนก่อน

      ​@@hypersniper1464 it works cuz massless gives the part a weight of 0 so it doesn't fall

  • @H4NN0TT
    @H4NN0TT 2 หลายเดือนก่อน

    mine just fall

  • @vndude
    @vndude 6 หลายเดือนก่อน

    it doesnt work :(

  • @rblox2729
    @rblox2729 9 หลายเดือนก่อน +2

    how do you make it stable

    • @Pandastroyer
      @Pandastroyer  9 หลายเดือนก่อน

      Sorry, but could you please elaborate? :)

    • @metalurji3
      @metalurji3 8 หลายเดือนก่อน

      ​@@Pandastroyerhe means how to ride it without the platform rotating

    • @tinazonn
      @tinazonn 8 หลายเดือนก่อน

      use a BodyGyro

  • @ancientone5633
    @ancientone5633 หลายเดือนก่อน

    hey man, do you know how to make it immovable by players?

    • @NonNoobber
      @NonNoobber 8 วันที่ผ่านมา

      imma try anchoring it

    • @ancientone5633
      @ancientone5633 6 วันที่ผ่านมา

      @@NonNoobber anchoring it would make it unable to move iirc, i gave up on roblox studio for now lol

  • @TheBoyzsog
    @TheBoyzsog 2 หลายเดือนก่อน

    Im just saying there's a thing called tween

  • @AidensheriffVR
    @AidensheriffVR 2 หลายเดือนก่อน

    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 10 หลายเดือนก่อน

    Followed the script perfectly, but the platform simply won’t move at all. It will just lie on the floor

    • @Pandastroyer
      @Pandastroyer  10 หลายเดือนก่อน

      I see. Is it fine if I can still see your script, though? But also check if the parts are correctly anchored. :)

    • @redfluff48
      @redfluff48 10 หลายเดือนก่อน

      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 2 หลายเดือนก่อน

      Oh for local part2 you did workspace.part2 it's supposed to be game.workspace.part2​@@mathiashansen2424

  • @user-xh1qo5bn7s
    @user-xh1qo5bn7s หลายเดือนก่อน

    dosent work

  • @WhiteFox012
    @WhiteFox012 10 หลายเดือนก่อน

    roblox studio remove the bodyposition :)

    • @Pandastroyer
      @Pandastroyer  10 หลายเดือนก่อน +1

      bruh :(

    • @cryptorai6713
      @cryptorai6713 10 หลายเดือนก่อน

      what script should i put now?

    • @tinazonn
      @tinazonn 8 หลายเดือนก่อน +1

      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 8 หลายเดือนก่อน +3

      you are a life saver@@tinazonn

  • @Ambush_DoorsOldNewCrucifiyed
    @Ambush_DoorsOldNewCrucifiyed 4 หลายเดือนก่อน

    It Didnt work

  • @StanScott-wi8cj
    @StanScott-wi8cj 2 หลายเดือนก่อน

    doesn't work

  • @starlordplays9187
    @starlordplays9187 4 หลายเดือนก่อน

    It doesn't work

  • @E-200gaming
    @E-200gaming 4 หลายเดือนก่อน

    Doesn't Work!

  • @fit1806
    @fit1806 หลายเดือนก่อน +1

    dosnt work. dont do its a waste of your time

  • @DanielTorres-rs2fw
    @DanielTorres-rs2fw 5 หลายเดือนก่อน

    This dont work

  • @fofinhopt1776
    @fofinhopt1776 2 หลายเดือนก่อน

    doesnt work for me ;-;

  • @jessicamousseau7716
    @jessicamousseau7716 หลายเดือนก่อน

    Didn't work.

  • @3DRigbounder
    @3DRigbounder 8 หลายเดือนก่อน +4

    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(3)
    bodyPos.Position = part2.Position
    wait(3)
    end

  • @knowledgemax_
    @knowledgemax_ 10 หลายเดือนก่อน +24

    IT IS NOT WORKING! IT KEEPS FALLING DOWN!

    • @progaming-yf3zf
      @progaming-yf3zf 9 หลายเดือนก่อน +6

      Anchor it

    • @knowledgemax_
      @knowledgemax_ 9 หลายเดือนก่อน

      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 9 หลายเดือนก่อน +3

      It has anchor?

    • @tinazonn
      @tinazonn 8 หลายเดือนก่อน +3

      no don't anchor it, that will just stop it from moving entirely. use a BodyGyro to stop it from rotating about.

    • @Nightzstuff
      @Nightzstuff 5 หลายเดือนก่อน +2

      Part.Anchored = true

  • @Personafandegojo
    @Personafandegojo หลายเดือนก่อน

    didnt worked

  • @countyballsdone8021
    @countyballsdone8021 หลายเดือนก่อน

    idk but it dierperd when i test my game idk why?

  • @Thunderboltster76682
    @Thunderboltster76682 5 หลายเดือนก่อน +2

    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 5 หลายเดือนก่อน

      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 9 หลายเดือนก่อน +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

    • @lululelec
      @lululelec 7 หลายเดือนก่อน +1

      you forgot a space

    • @lululelec
      @lululelec 7 หลายเดือนก่อน

      no two at local part = game

  • @nintengon9665
    @nintengon9665 2 หลายเดือนก่อน

    doesn't work

    • @Pandastroyer
      @Pandastroyer  2 หลายเดือนก่อน

      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 4 หลายเดือนก่อน

    It doesn't work

    • @Pandastroyer
      @Pandastroyer  4 หลายเดือนก่อน

      Sorry to hear that. It would be great if you could specify what didn’t work if you could so I might help