Make a moving platform in Roblox Studio! [TUTORIAL]

Поделиться
HTML-код
  • Опубликовано: 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
  • ИгрыИгры

Комментарии • 238

  • @KittDevv
    @KittDevv Год назад +29

    First 😃

    • @Pandastroyer
      @Pandastroyer  Год назад +8

      Congrats! Second 😀😄

    • @thepigxd6704
      @thepigxd6704 7 месяцев назад +8

      kids that want attention and they get it bruh

    • @robinrovenszky9473
      @robinrovenszky9473 7 месяцев назад

      @@thepigxd6704fr

    • @whiterun9650
      @whiterun9650 7 месяцев назад +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 6 месяцев назад +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 6 месяцев назад +113

    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 месяцев назад +2

      thank you very much 😄😃😀

    • @princetbz1102
      @princetbz1102 5 месяцев назад +7

      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 5 месяцев назад +2

      also capital Instance but you saved a lot of time

    • @mrvehf
      @mrvehf 5 месяцев назад

      ty!

    • @limitqd
      @limitqd 4 месяца назад

  • @Smurfis
    @Smurfis 5 месяцев назад +2

    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.

  • @NERSCH0711
    @NERSCH0711 Месяц назад

    Awesome tutorial! Thank you so much!

  • @Chinmay-ft8pm
    @Chinmay-ft8pm 10 месяцев назад +7

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

  • @THEcatinamicrowave
    @THEcatinamicrowave 2 месяца назад +4

    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.

    • @WizWaz_yt
      @WizWaz_yt 2 месяца назад

      yo

    • @Stigbdd
      @Stigbdd Месяц назад

      how do u align it tho?

    • @Stigbdd
      @Stigbdd Месяц назад

      i mean connect

    • @THEcatinamicrowave
      @THEcatinamicrowave Месяц назад

      @@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 3 месяца назад +1

    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 8 месяцев назад +1

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

    • @Pandastroyer
      @Pandastroyer  8 месяцев назад

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

  • @LeapInno
    @LeapInno 8 месяцев назад

    Nice tutorial idea.

  • @BlueGD703
    @BlueGD703 6 месяцев назад

    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

  • @dariolytten3854
    @dariolytten3854 Месяц назад

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

  • @detecctivd5983
    @detecctivd5983 6 месяцев назад +9

    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

  • @Stigbdd
    @Stigbdd Месяц назад +1

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

  • @Zozo_official
    @Zozo_official 8 месяцев назад

    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

  • @mursu324
    @mursu324 5 месяцев назад

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

  • @JohnrobTerre-v2m
    @JohnrobTerre-v2m 26 дней назад

    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 6 месяцев назад

    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.

  • @Thekatbo
    @Thekatbo 7 месяцев назад

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

  • @neelamverma445
    @neelamverma445 2 месяца назад

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

  • @VirusBeak
    @VirusBeak Год назад +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 Год назад

      anchor it?

    • @VirusBeak
      @VirusBeak Год назад +1

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

    • @mayzaki3699
      @mayzaki3699 Год назад

      anchor it

    • @VirusBeak
      @VirusBeak Год назад

      @@mayzaki3699 Read the comment abpve

    • @Ptero9119
      @Ptero9119 11 месяцев назад

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

  • @Zipstar1._
    @Zipstar1._ 2 месяца назад

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

  • @scenoveob1336
    @scenoveob1336 4 месяца назад

    Can you adjust the velocity of the part?

  • @PricedarkevilAlt
    @PricedarkevilAlt 7 месяцев назад

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

  • @AriesLT-nu4ng
    @AriesLT-nu4ng 2 месяца назад

    tysm Pandastroyer!
    :)

  • @beikon999
    @beikon999 Год назад +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  Год назад +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

  • @user-fd4sk8ev4d
    @user-fd4sk8ev4d 9 месяцев назад +3

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

    • @Prismathicz921
      @Prismathicz921 8 месяцев назад +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 8 месяцев назад

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

  • @jeshronambait7813
    @jeshronambait7813 8 месяцев назад +2

    this is the one i need to learn about how to make i search so many but this one very helpful to me

  • @roxaplayshd2112
    @roxaplayshd2112 День назад

    How is it with models? Because I have to anchor them

  • @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 6 месяцев назад +3

      use different method this one sucks

  • @B.U.E
    @B.U.E 5 месяцев назад +2

    Can you make the tutorial but for train ?

  • @ForeverToaster
    @ForeverToaster 11 месяцев назад +16

    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 3 месяца назад

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

  • @ZythronicBloxFruits
    @ZythronicBloxFruits 3 месяца назад

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

  • @OfficialAdventureStudios
    @OfficialAdventureStudios Год назад +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  Год назад +2

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

    • @OfficialAdventureStudios
      @OfficialAdventureStudios Год назад +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 Год назад +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 11 месяцев назад +1

      anchor it

    • @zemph_real
      @zemph_real 11 месяцев назад +1

      Are your destination parts anchored???

  • @SlimeyStarts-fn3nb
    @SlimeyStarts-fn3nb Месяц назад

    It doesn't work for me, the part just keeps falling.

  • @ugzephyr
    @ugzephyr 7 дней назад

    thanks

  • @Vrethrenz
    @Vrethrenz 6 месяцев назад

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

  • @nvrrr__-__-__-_._
    @nvrrr__-__-__-_._ 3 месяца назад +1

    thank you

  • @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._ 2 месяца назад

      Just increase the wait() command

  • @Pink69420
    @Pink69420 Год назад +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  Год назад

      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

  • @tinazonn
    @tinazonn 9 месяцев назад

    use a BodyGyro to prevent the part from rotating when a player steps on it.

    • @Absycal
      @Absycal 9 месяцев назад

      how do you apply that?

    • @awicaem5407
      @awicaem5407 9 месяцев назад

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

    • @tinazonn
      @tinazonn 7 месяцев назад

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

    • @Absycal
      @Absycal 7 месяцев назад

      alr thanks@@tinazonn

  • @cereaL6
    @cereaL6 4 месяца назад +1

    it never works when i try it

  • @epicmangaming3841
    @epicmangaming3841 3 месяца назад

    can it work with meshes?

  • @TondonStudios
    @TondonStudios Месяц назад

    I havent bodyposition in front of mypatr☹️

  • @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 10 месяцев назад

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

    • @Hello-ue9tj
      @Hello-ue9tj 3 месяца назад

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

    • @Hello-ue9tj
      @Hello-ue9tj 3 месяца назад

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

  • @Limecody
    @Limecody 2 месяца назад

    Ty

  • @greengreengreengreengreengreen
    @greengreengreengreengreengreen 5 месяцев назад

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

  • @BloxxerBoi_m134
    @BloxxerBoi_m134 10 месяцев назад +2

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

    • @user-fd4sk8ev4d
      @user-fd4sk8ev4d 9 месяцев назад

      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 9 месяцев назад +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 9 месяцев назад

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

  • @MrChicken-db1ms
    @MrChicken-db1ms 22 дня назад

    i dont know why but its not working for me

  • @cashton446
    @cashton446 10 месяцев назад +1

    How can this be applied on Roblox characters?

    • @vecremser2226
      @vecremser2226 9 месяцев назад +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.

  • @yunomikels
    @yunomikels 2 месяца назад

    can you respawn it ?

  • @PlatonNovikov
    @PlatonNovikov 15 дней назад

    Doesn't work to me idk why?
    😥

  • @Jkmjst
    @Jkmjst Месяц назад

    yall my part ran away into the distance

  • @cloudydonutshd1497
    @cloudydonutshd1497 6 месяцев назад +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

  • @husky_games_123
    @husky_games_123 Месяц назад

    it dose not work for me

  • @klardikkgoodgame
    @klardikkgoodgame 18 дней назад

    its not working for me

  • @quasimo15210
    @quasimo15210 9 месяцев назад

    How do I do this but with an entire model?

    • @_somosa_gamer_
      @_somosa_gamer_ 9 месяцев назад

      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.

  • @st1nkyperson
    @st1nkyperson 7 месяцев назад

    it doesnt work :(

  • @bluar.
    @bluar. 5 месяцев назад

    wow it doesnt need tween service

  • @LegalizedManokEater0
    @LegalizedManokEater0 11 месяцев назад +1

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

    • @Sunnny1x1_
      @Sunnny1x1_ 11 месяцев назад

      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?

  • @ItPindit
    @ItPindit 5 месяцев назад +1

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

    • @Pandastroyer
      @Pandastroyer  5 месяцев назад

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

    • @ItPindit
      @ItPindit 5 месяцев назад

      @@Pandastroyer oh, alright. Thanks!

  • @Glitch_The_Obbiest
    @Glitch_The_Obbiest 6 месяцев назад +1

    i do it same, but script isn't working

    • @hypernaturalgames9516
      @hypernaturalgames9516 5 месяцев назад +1

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

  • @NonNoobber
    @NonNoobber Месяц назад

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

    • @DummyDom_
      @DummyDom_ Месяц назад

      It only works on parts but not Meshes. I tried to make a shark move by using this script but it didnt work :(

    • @NonNoobber
      @NonNoobber 19 дней назад

      i tried making a car out of parts and weld constraints and it still doesnt work

    • @DummyDom_
      @DummyDom_ 19 дней назад

      @@NonNoobber I think it’s because it’s a model, it doesn’t work on models or meshes, it only works on single parts

  • @vanessagrosser6002
    @vanessagrosser6002 8 месяцев назад +1

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

  • @cereaL6
    @cereaL6 4 месяца назад

    print("Hello world!")

  • @H4NN0TT
    @H4NN0TT 3 месяца назад

    mine just fall

  • @Nightergamer
    @Nightergamer 3 месяца назад

    Doesn't work. I tried and it won't move

    • @Pandastroyer
      @Pandastroyer  3 месяца назад

      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 :)

  • @converted36
    @converted36 6 месяцев назад

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

    • @hypersniper1464
      @hypersniper1464 5 месяцев назад

      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

  • @_breadbuddys_
    @_breadbuddys_ 16 дней назад

    Didnt work for me

  • @TheBoyzsog
    @TheBoyzsog 4 месяца назад

    Im just saying there's a thing called tween

  • @StanScott-wi8cj
    @StanScott-wi8cj 4 месяца назад

    doesn't work

  • @user-xh1qo5bn7s
    @user-xh1qo5bn7s 3 месяца назад

    dosent work

  • @CheeseManXD
    @CheeseManXD 3 месяца назад

    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

  • @starlordplays9187
    @starlordplays9187 5 месяцев назад

    It doesn't work

  • @SLEEPYWEEPY_GASA
    @SLEEPYWEEPY_GASA 6 месяцев назад

    It Didnt work

  • @E-200gaming
    @E-200gaming 5 месяцев назад

    Doesn't Work!

  • @ancientone5633
    @ancientone5633 3 месяца назад

    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

  • @DanielTorres-rs2fw
    @DanielTorres-rs2fw 7 месяцев назад

    This dont work

  • @rblox2729
    @rblox2729 11 месяцев назад +2

    how do you make it stable

    • @Pandastroyer
      @Pandastroyer  10 месяцев назад

      Sorry, but could you please elaborate? :)

    • @metalurji3
      @metalurji3 10 месяцев назад

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

    • @tinazonn
      @tinazonn 9 месяцев назад

      use a BodyGyro

  • @Guzikmike1
    @Guzikmike1 9 дней назад

    0:26 Posi...tions

  • @JamalIsMyDad2
    @JamalIsMyDad2 3 дня назад

    thanks its not working

  • @jessicamousseau7716
    @jessicamousseau7716 2 месяца назад

    Didn't work.

  • @macabreoven
    @macabreoven Год назад

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

    • @Pandastroyer
      @Pandastroyer  Год назад

      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 9 месяцев назад

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

  • @Personafandegojo
    @Personafandegojo 3 месяца назад

    didnt worked

  • @AidensheriffVR
    @AidensheriffVR 4 месяца назад

    it did not work but u still got a sub

  • @fofinhopt1776
    @fofinhopt1776 3 месяца назад

    doesnt work for me ;-;

  • @WhiteFox012
    @WhiteFox012 11 месяцев назад

    roblox studio remove the bodyposition :)

    • @Pandastroyer
      @Pandastroyer  11 месяцев назад +1

      bruh :(

    • @cryptorai6713
      @cryptorai6713 11 месяцев назад

      what script should i put now?

    • @tinazonn
      @tinazonn 9 месяцев назад +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 9 месяцев назад +3

      you are a life saver@@tinazonn

  • @knowledgemax_
    @knowledgemax_ 11 месяцев назад +29

    IT IS NOT WORKING! IT KEEPS FALLING DOWN!

    • @progaming-yf3zf
      @progaming-yf3zf 11 месяцев назад +7

      Anchor it

    • @knowledgemax_
      @knowledgemax_ 11 месяцев назад

      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 месяцев назад +3

      It has anchor?

    • @tinazonn
      @tinazonn 9 месяцев назад +4

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

    • @Nightzstuff
      @Nightzstuff 7 месяцев назад +3

      Part.Anchored = true

  • @fit1806
    @fit1806 2 месяца назад +1

    dosnt work. dont do its a waste of your time

    • @GFI_Gaming
      @GFI_Gaming Месяц назад

      worked for me

    • @ruthackert7266
      @ruthackert7266 27 дней назад

      It just sounds like a skill issue for him..

  • @joshuagamerpro115
    @joshuagamerpro115 5 дней назад +1

    heres the script THAT WORKS:
    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

  • @countyballsdone8021
    @countyballsdone8021 2 месяца назад

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

  • @Thunderboltster76682
    @Thunderboltster76682 6 месяцев назад +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 6 месяцев назад

      Appreciate it, truly. I've been searching for a working one for a while but couldnt find one so thank you

  • @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 :)

  • @1_the1st_1
    @1_the1st_1 11 месяцев назад +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 8 месяцев назад +1

      you forgot a space

    • @lululelec
      @lululelec 8 месяцев назад

      no two at local part = game

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

  • @Riyan_YT2
    @Riyan_YT2 2 месяца назад +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