(STAIR FIX) How To Make Your Own Nextbot In Roblox Studio! V1.2 (Gmod)

Поделиться
HTML-код
  • Опубликовано: 22 окт 2024

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

  • @liminality9223
    @liminality9223 2 года назад +8

    Also for anybody that wants a WORKING safe zone like in nicos nextbot.
    The script will be in the replys, also its labelled for anyone that is clueless with scripting.

    • @liminality9223
      @liminality9223 2 года назад +5

      -- Roblox services
      local PhysicsService = game:GetService("PhysicsService")
      local Players = game:GetService("Players")
      local npcModel = script.Parent
      -- Setting up names for the collision groups. PhysicsService handles everything with
      -- the name of the group rather than referencing the group itself, so saving these
      -- in strings helps keep things consistant
      local playerGroup = "Players"
      local npcGroup = "NPCs"
      -- Create the collision groups and set them to not collide with each other
      local function collisionGroupExists(groupName)
      local groups = PhysicsService:GetCollisionGroups()
      for _, group in ipairs(groups) do
      if group.name == groupName then
      return true
      end
      end
      return false
      end
      if not collisionGroupExists(npcGroup) then
      PhysicsService:CreateCollisionGroup(npcGroup)
      end
      if not collisionGroupExists(playerGroup) then
      PhysicsService:CreateCollisionGroup(playerGroup)
      end
      PhysicsService:CollisionGroupSetCollidable(npcGroup, playerGroup, false)
      -- Helper function to recursively set the collision group on an object and all of
      -- its children
      local function setCollisionGroupRecursive(object, group)
      if object:IsA("BasePart") then
      PhysicsService:SetPartCollisionGroup(object, group)
      end
      for _, child in ipairs(object:GetChildren()) do
      setCollisionGroupRecursive(child, group)
      end
      end
      -- Function called when a player character joins the game
      local function onCharacterAdded(character)
      -- Put all of the current parts of the model into the player collision group
      setCollisionGroupRecursive(character, playerGroup)

      -- Put any part that gets added to the character later into the collision group
      character.DescendantAdded:Connect(function(descendant)
      if descendant:IsA("BasePart") then
      PhysicsService:SetPartCollisionGroup(descendant, playerGroup)
      end
      end)
      end
      -- Function called when a player joins the game
      local function onPlayerAdded(player)
      player.CharacterAdded:Connect(onCharacterAdded)
      end
      -- Sets the collision group of Blue to the npc group
      setCollisionGroupRecursive(npcModel, npcGroup)
      -- Bind PlayerAdded event to onPlayerAdded
      Players.PlayerAdded:Connect(onPlayerAdded)
      -- Make sure to add any characters that are currently in the game
      -- to the collision group (otherwise the above event wouldn't catch
      -- them
      for _, player in ipairs(Players:GetPlayers()) do
      onPlayerAdded(player)
      end

    • @liminality9223
      @liminality9223 2 года назад +2

      Any problems with this ask me.

    • @ivano81rbx
      @ivano81rbx 2 года назад +1

      @@liminality9223 thank you so much for this script it was so hard finding a good script for safe zones and you helped me out so much, works perfectly!!

    • @Graphik
      @Graphik  2 года назад +2

      ey ima give u a shotout

    • @unknowngamer0556
      @unknowngamer0556 2 года назад +1

      @@Graphik but how do u make a save zone its just a code :/

  • @FireFlame403
    @FireFlame403 2 года назад +1

    Can you make a tutorial on how to make a death bear show the nextbots can’t pass it/they will die if they touch it

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

    Thanks For Making Me Laugh Again!
    Also This Part Tho- 💀 3:00

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

    In 0:18 i was confused, he was either talking bout this recording or the roblox ones bc i can see those red lines appear randomly

  • @twomarril2109
    @twomarril2109 2 года назад +1

    I wanted know if animated nextbots are possible with the template?

    • @Graphik
      @Graphik  2 года назад +1

      i think so, ill try make a tutor

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

    When u were singing saul at the end of the videi and u git a voice crack u made me lwugh hard 😂

  • @GDmaxe
    @GDmaxe 2 года назад +1

    When is v1.3 coming out

  • @Unchained15
    @Unchained15 2 года назад +1

    Also will be cool if the bots fling you across the map like in nico's nextbots.

    • @Graphik
      @Graphik  2 года назад +1

      im trying to make that

  • @ajtrans2lur
    @ajtrans2lur 2 года назад +3

    Can you make a tutorial on making a simple map for the the nextbots

  • @MisCaze_
    @MisCaze_ 2 года назад +1

    Ayo man, what editing software you use? Its epoc.

    • @Graphik
      @Graphik  2 года назад

      davinci resolve 18

    • @MisCaze_
      @MisCaze_ 2 года назад

      Am not into that lol, can you help me with development? Also can you give me any ways to contact you in person?

    • @Zalann
      @Zalann 2 года назад

      @@Graphik Please respond lol i am on phone rn.

  • @JoJo_Kitten
    @JoJo_Kitten 2 года назад +2

    make a "chase static" so you will know the bot is besides you

    • @saintswore
      @saintswore 2 года назад

      please

    • @RandomguySNNS
      @RandomguySNNS 2 года назад

      Can we just put a sound

    • @saintswore
      @saintswore 2 года назад

      @@RandomguySNNS he means a static screen when its near us

    • @RandomguySNNS
      @RandomguySNNS 2 года назад

      @@saintswore What if someone joined then he might call our game a Nico's nextbots ripoff

    • @saintswore
      @saintswore 2 года назад

      theres like literal 100+ copies of that game.

  • @Unchained15
    @Unchained15 2 года назад +1

    There is also a bhop script on the roblox devforum by SnarlyZoo called (Bunny Hoppy Movement).

  • @eliassilva8178
    @eliassilva8178 2 года назад +2

    Can you make a video on how to make the glitch when you get close to a next bot

  • @FROGDUDESPOND
    @FROGDUDESPOND 2 года назад +2

    Do u have any way to make Nextbots change randomly, like in Nicos Nextbots?

    • @Graphik
      @Graphik  2 года назад +1

      like its image?

    • @FROGDUDESPOND
      @FROGDUDESPOND 2 года назад +1

      @@Graphik yeah, what I mean by "like Nicos Nextbots" is how obunga may randomly be switched out for Quandale

  • @Shortcuterfe2
    @Shortcuterfe2 2 года назад

    2:36 its making me laugh very hardly😂

  • @el_cooljames
    @el_cooljames 2 года назад +1

    Can you make the mall map from nicos nextbots all of the models I find are half of the map and not all of it and some of the areas on the map don’t yet you go in them

  • @Footyfan91872
    @Footyfan91872 2 года назад +4

    Can you make a tutorial on how to make a map with easy steps

    • @basicallyjusttan7727
      @basicallyjusttan7727 2 года назад +1

      Use Archimedes2 it's a good plugin
      You should also have a texture pack (Can't give one right now)
      For assets you can use free models(Completely fine if you tune it properly)

  • @friendlygames6784
    @friendlygames6784 2 года назад

    Yo if you continue making tutorial that other people cant you might get pupular good luck and thanks for this video

  • @WisdomShrimp1
    @WisdomShrimp1 2 года назад +1

    When I get killed by the bots they stay in the spot where they killed me. I dont know if they are stuck or they are "attacking my dead body" Is there a fix to this?

    • @Graphik
      @Graphik  2 года назад

      delete body parts when dead in serverscriptservice is a fix

  • @unknowngamer0556
    @unknowngamer0556 2 года назад +1

    hey sqzuid instead of using stair fix part u added to ur updated version of nextbot module why dont u just add wedge on stairs and make it invisible the bot climbs up smoothly and fast.

    • @Graphik
      @Graphik  2 года назад

      yea srry

    • @unknowngamer0556
      @unknowngamer0556 2 года назад

      @@Graphik BRO I JUST FOUND A AY HOW TO MAKE A SMARTEST NEXTBOT but not telling here

  • @unknowngamer0556
    @unknowngamer0556 2 года назад

    btw can u make nextbots smarter like in nico's nextbots? btw used ur proximity doors AND ITS REALLY GOOD.

    • @itsyoungie
      @itsyoungie 2 года назад

      u can use the scale option

    • @unknowngamer0556
      @unknowngamer0556 2 года назад

      @@itsyoungie this is old comment but dont use scale u just select the attachments and move them it will make the image big or small or wide ez it also has image tilting when u do that thats cool

  • @Unchained15
    @Unchained15 2 года назад +1

    You should make it so the bots can reset if they get stuck on stuff. It can also solve the issue with the bots slowing down.

    • @Graphik
      @Graphik  2 года назад +1

      i domt know how atm, dp you?

    • @basicallyjusttan7727
      @basicallyjusttan7727 2 года назад +1

      @@Graphik Use path.blocked in pathfinding

    • @basicallyjusttan7727
      @basicallyjusttan7727 2 года назад +1

      If not reliable use repeat wait until instead

    • @Graphik
      @Graphik  2 года назад +1

      for some reason my script im testing rn doesnt work with that idk why.

  • @Unchained15
    @Unchained15 2 года назад

    @Schematization (sqzuid) Hey if you want to give the nextbots the ability to look at you from any directions try using BillboardGui and then add an ImageLabel inside of BillboardGui then set the ExtentsOffset to (0,4.3,0 or anything you like) All of this has to go in HumanoidRootPart.

    • @Unchained15
      @Unchained15 2 года назад

      @berserker_hvizo Alright I'll let you know when I find away to make it go from being small to being a normal sized nextbot.

    • @Unchained15
      @Unchained15 2 года назад

      @berserker_hvizo Nice game btw.

  • @nurazislam8992
    @nurazislam8992 2 года назад

    best mouth music ever

  • @el_cooljames
    @el_cooljames 2 года назад +2

    Can you make a video on how to tap to respawn

    • @Graphik
      @Graphik  2 года назад +2

      for yourself, or the nextbot

    • @scout_gaming132
      @scout_gaming132 2 года назад

      @@Graphik hes talking about the player, not the nextbot. thats weird anyway

    • @el_cooljames
      @el_cooljames 2 года назад

      @@Graphik for when you die you have to tap the screen to respawn

  • @loganboi2166
    @loganboi2166 2 года назад

    sometimes the collision groups script doesn't work. does not fire.
    collision groups not created (ill probably solve it soon so idk)
    solved it - plr already a group

  • @RoCkO555
    @RoCkO555 2 года назад

    Suggestion:
    Make a working FAST hinge door AND make it so the nextbots can open it as well PLEASE

  • @Hancemayapu
    @Hancemayapu 2 года назад

    YES HES BACK

  • @femaleredman
    @femaleredman 2 года назад

    Bro pls make part 1.3 and explain how to add more bots and make them not stay still until they see the target, cuz i tried all methods and nothing, i used another script for now, but ill be glad to see how to add more bots and make them move on pathfinding

    • @femaleredman
      @femaleredman 2 года назад

      like um, i made maze map and they moving some time on pathfinding and then they're staying still, idk why it happens actually

  • @mantvyy
    @mantvyy 2 года назад

    Does it have a good path finding mechanism?

    • @Graphik
      @Graphik  2 года назад

      use v1.3 or this but in my opinion thhe latest update is better.

  • @titaniumfoil-u3u
    @titaniumfoil-u3u Год назад

    once i used someones nextbot kit and set the speed to 1500 ps : its not your nextbot kit but someone elses nextbot kit

  • @Neptune1995
    @Neptune1995 2 года назад +1

    could you do an update to the sprint bar so it can do the crouch and crouch slide?

  • @valdemar_f
    @valdemar_f 2 года назад +1

    how do you do the effects when it comes closer just like in nico's game?

  • @Whatatoad
    @Whatatoad 2 года назад

    um can i put multiple nextbots? in because i need a lot

  • @scarmouno
    @scarmouno 2 года назад

    hey man could you make a video on how to jumpscare the nextbot?

  • @Bopsss
    @Bopsss 2 года назад

    Could you add in the next one if the player dies all nextbots respawn

  • @cjb886
    @cjb886 2 года назад

    there are like 5 nextbots when i only want 1

  • @goofball1245
    @goofball1245 2 года назад +2

    Can u add jumpscares too them please :)

  • @123nicopatty
    @123nicopatty 2 года назад

    can you make the nextbots wander on v1.2 ?

  • @GoldenMagicc
    @GoldenMagicc 2 года назад

    For people who want to make a safe zone, here is an easier version of it.
    Basically, have a part and thats the AREA for the safe zone, so make it big. Make it can collide false. Add the part a script:
    script.Parent.Touched:Connect(function(hit)
    local character = hit.parent
    local humanoid = character:FindFirstChild("Humanoid")

    if humanoid ~= nil and game.Players:GetPlayerFromCharacter(character)then
    humanoid.MaxHealth = math.huge
    humanoid.Health = math.huge
    end
    end)
    script.Parent.TouchEnded:Connect(function(left)
    local character = left.Parent
    local humanoid = character:FindFirstChild("Humanoid")

    if humanoid ~= nil and game.Players:GetPlayerFromCharacter(character)then
    humanoid.MaxHealth = 100
    humanoid.Health = 100
    end
    end)
    Once you done this and play it, the nextbot will go to you, but your health is inf and cant kill you unless you go outside of it. Thank me :)

    • @Graphik
      @Graphik  2 года назад

      yes

    • @AghastFilms
      @AghastFilms 2 года назад

      Can you make it so that when you enter the Safe zone that bot is unable to detect your location and either just goes for a different player outside of the Safe zone or just goes to random locations outside the Safe zone? Basically when you enter the Safe zone the bot thinks you don't exist and changes its pathfinding, unless you leave the Safe zone obviously.

    • @GoldenMagicc
      @GoldenMagicc 2 года назад

      @@AghastFilms hmm very tricky to script that cause idk about the pathfinding about roblox. However, if you dont want him to literally go to you, make the nextbot’s hitbox bigger and create a roof wall to stop him

  • @b1uhm0m3nt
    @b1uhm0m3nt 2 года назад

    is this better now? does it now chase u when its kills u ?

  • @scout_gaming132
    @scout_gaming132 2 года назад

    next should be the bunnyhopping and sliding and anims

    • @Graphik
      @Graphik  2 года назад

      bruv you predicted the next vid noce job

    • @scout_gaming132
      @scout_gaming132 2 года назад

      @@Graphik sheesh

  • @Azino39
    @Azino39 2 года назад +1

    make chase static/shake

    • @Graphik
      @Graphik  2 года назад +1

      aight

    • @basicallyjusttan7727
      @basicallyjusttan7727 2 года назад

      You can use magnitude to base the transparency of the chase static
      But to animate it Idk
      Dont really recommend since the people are going to call your game an nico nextbot clone

    • @RandomguySNNS
      @RandomguySNNS 2 года назад

      @@basicallyjusttan7727 yeah

  • @biwbsNextbowts
    @biwbsNextbowts 2 года назад

    I have one problem when they kill me they stand there can u fix it?

  • @gelowlespeed245
    @gelowlespeed245 2 года назад

    bro gravity I put 50 and jump 3 and I'm jumping very high

  • @2safe159
    @2safe159 2 года назад

    How come the bot won’t detect through walls

  • @longsleeves7480
    @longsleeves7480 2 года назад

    can you make a tutorial on a pushable doors including sound and animation when i push the door please

  • @Panffl_-rw4ni
    @Panffl_-rw4ni Месяц назад

    "Literally does nothing"
    460 lines of script:

  • @basicallyjusttan7727
    @basicallyjusttan7727 2 года назад

    Are you sure this is the new one? the monster script is Identical to the V1

    • @Graphik
      @Graphik  2 года назад

      i said, this is the same as the V1, with minor changes

  • @perimonRBX
    @perimonRBX 2 года назад

    why does the nextbot not move??? all it says is that the pathfinding script is too long. Someone please help!

    • @Graphik
      @Graphik  2 года назад

      yea it means your too far away, either go closer or, change the serach distance

  • @FakeSterry
    @FakeSterry 2 года назад

    Hello man. can you teach us how to port Garry's Mod maps to ROBLOX Studio?

  • @Vortex34988
    @Vortex34988 2 года назад

    question:the safe room works?

  • @OleeeOfc
    @OleeeOfc 2 года назад

    why don't you already have 900 subs?

  • @Purpituz
    @Purpituz 2 года назад

    is there a way to make the nextbot deal no damage at all because i wand to make my own hitbox for it

    • @Unchained15
      @Unchained15 2 года назад

      I think i may have the Solution you're looking for go to the nextbot then go to both of the (Ai Chase scripts) And put zombie damage to 0 in both scripts dont remove the torsos the bot will get buggy and be in the ground.

  • @gatekeepingwww
    @gatekeepingwww 2 года назад

    4:46 beatbox

  • @anaverageguy360
    @anaverageguy360 2 года назад

    I made one game with this

  • @bluemon9624
    @bluemon9624 2 года назад

    can you fix the momentum script? you cant move on mobile

  • @realmizan
    @realmizan 2 года назад

    Can u make the tutorial a movement system like nico’s nextbots

    • @Graphik
      @Graphik  2 года назад

      i will im actually working on it

  • @Windstair
    @Windstair 2 года назад

    ehh... the nextbots are a little bit too fast, and its still like v1 but worse so, i might keep the v1.1 instead, keep making tutorial videos! (why i didnt change walkspeed? im too lazy lol)

    • @MangoeyYT
      @MangoeyYT 2 года назад

      if its to fast change the walkspeed to 100

    • @Windstair
      @Windstair 2 года назад

      @@MangoeyYT nvm about that, its pretty fun actually

    • @MangoeyYT
      @MangoeyYT 2 года назад

      @@Windstair actually yeah

  • @epikdark2803
    @epikdark2803 2 года назад

    how can u make ur next bot bigger

    • @Graphik
      @Graphik  2 года назад

      go to image and scroll down, change the width 1 & 0 and curvesizss

  • @lino_viloria
    @lino_viloria 2 года назад

    Hello, I have a problem and it is that the bot behaves more strangely in version 1.2 than in 1.1, it gets stuck easier and sometimes it goes after the player by the longest route, I feel that the artificial intelligence of version 1.1 was better. Or is there any solution?

    • @lino_viloria
      @lino_viloria 2 года назад

      And send me your discord pls.

    • @Graphik
      @Graphik  2 года назад

      there isnt a solution because roblox pathfinding is terrible to work with

    • @WisdomShrimp1
      @WisdomShrimp1 2 года назад

      The bots all jumble up into the spot where they killed me

    • @Graphik
      @Graphik  2 года назад

      @@WisdomShrimp1 yeah, in order to fix that, use my “delete body parts when dead” script

    • @WisdomShrimp1
      @WisdomShrimp1 2 года назад

      @@Graphik for some reason it doesn't work for me, does the script not work for r15?

  • @tom-df4mi
    @tom-df4mi 2 года назад

    hos did you place the map????

    • @Graphik
      @Graphik  2 года назад

      just search ikea map

    • @tom-df4mi
      @tom-df4mi 2 года назад

      @@Graphik ah thanks btw finally found the original gmod map but still thanks for the great tutorials😉 ps: at the gmod physics video you should update it so i can finally finish my nextbots map

  • @WorstChanged
    @WorstChanged 2 года назад

    how to get map with the storage place

    • @Graphik
      @Graphik  2 года назад

      search in toolbox nicos nextbots map

    • @WorstChanged
      @WorstChanged 2 года назад

      @@Graphik and the full map? like the garage

  • @AzureBoi13
    @AzureBoi13 2 года назад

    How to make your screen in first person?

    • @Graphik
      @Graphik  2 года назад

      right now go into the player instance and change the camera to firstpersononly

  • @kilka589
    @kilka589 2 года назад

    How to make the bot knock out doors?

  • @sbninenine
    @sbninenine 2 года назад

    jumpscare pls

  • @WorstChanged
    @WorstChanged 2 года назад

    And how to make doblue doors?

    • @Graphik
      @Graphik  2 года назад

      go to my v1.1 vid, at the end

    • @WorstChanged
      @WorstChanged 2 года назад

      @@Graphik what timeing?

  • @justgennnn
    @justgennnn 2 года назад

    Version 1.2 out in 3 days???

    • @Graphik
      @Graphik  2 года назад

      it was the most buggy thing ever

    • @Graphik
      @Graphik  2 года назад

      the 1.1

    • @justgennnn
      @justgennnn 2 года назад

      @@Graphik fr, also can u help me with my game?

  • @Whatatoad
    @Whatatoad 2 года назад

    i tried to make it go tru the doors and it didn't work

    • @Graphik
      @Graphik  2 года назад

      collision group 3, works for me

    • @Whatatoad
      @Whatatoad 2 года назад

      @@Graphik maybe there is a way where you can make the bot try to detect the player, instead of going some other way instead of going thru the door. at least make comment with instructions i know you where tellling me lot of things how to do it . i don't want to be rude,just pls or else my game can not be complete

  • @valtheyoutuberbadone5079
    @valtheyoutuberbadone5079 2 года назад

    the sprint script with momentum doesnt work can u help

  • @andrieskie4228
    @andrieskie4228 2 года назад

    The Problem His How Can I Make The Nextbot Bigger???
    Edit: Pls Answer

    • @Graphik
      @Graphik  2 года назад

      curvesize 1&0 and width 1&0, more info in my v1.1 video

  • @anaverageguy360
    @anaverageguy360 2 года назад

    how do you change speed

  • @Hancemayapu
    @Hancemayapu 2 года назад

    maps ?

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

    How u import the map??

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

      sorry for late response, ppl post it in the toolbox

  • @biggerhead.dude12
    @biggerhead.dude12 Год назад

    Pls gmod health

  • @jack69frfr
    @jack69frfr 2 года назад

    how to add audio to nextbot?

  • @Windstair
    @Windstair 2 года назад

    ayo? new nextbot? im testing this, if its perfect, i will give another cool comment

    • @Graphik
      @Graphik  2 года назад

      sorry for so many updates, its so buggy

    • @Windstair
      @Windstair 2 года назад

      @@Graphik its ok sqzuid, u tried ur best

  • @WorstChanged
    @WorstChanged 2 года назад

    please teach menu :(

  • @Unchained15
    @Unchained15 2 года назад

    I hope my comment helps you improve this.

  • @Akram_blox
    @Akram_blox 2 года назад

    How do you make it killable

    • @Graphik
      @Graphik  2 года назад

      change maxhealth and health in humanoid (same number)

    • @Akram_blox
      @Akram_blox 2 года назад

      @@Graphik so both have to be the same number?

  • @nor0394
    @nor0394 2 года назад

    how do i add sound to it?

    • @Graphik
      @Graphik  2 года назад

      copy the sound id (only the number) and paste it in the sound id area in torso

  • @bluesoda404
    @bluesoda404 2 года назад

    for some reason the safe zone dont seem to work

    • @Graphik
      @Graphik  2 года назад

      add a killbrick above the player on the safezone so nextbot dies and not the player, and change all of the parts to cancollide false if it doesnt work.

    • @basicallyjusttan7727
      @basicallyjusttan7727 2 года назад

      @@Graphik OR you can use region3 and not kill the nextbot

    • @basicallyjusttan7727
      @basicallyjusttan7727 2 года назад

      Actually Just use Collision groups that would help

  • @axelouv3002
    @axelouv3002 2 года назад

    how do you change speed?

    • @Graphik
      @Graphik  2 года назад

      i mentioned it in the video, scroll down under humanoid

  • @zowious3657
    @zowious3657 2 года назад

    how to sound

    • @Graphik
      @Graphik  2 года назад

      copy sound id from a sound by right clicking on the sound in toolbox and pasting only the number in the sound id textbox

  • @bluesoda404
    @bluesoda404 2 года назад

    map how?

    • @Graphik
      @Graphik  2 года назад

      nicos nextbot search in toolbox under models

  • @RandomguySNNS
    @RandomguySNNS 2 года назад

    How to make it slow

    • @Graphik
      @Graphik  2 года назад

      humanoid walkspeed

    • @RandomguySNNS
      @RandomguySNNS 2 года назад

      @@Graphik ok

    • @RandomguySNNS
      @RandomguySNNS 2 года назад

      @@Graphik How to make it bigger? i tried changing the curvesize and width it just become a mess

    • @RandomguySNNS
      @RandomguySNNS 2 года назад

      @@Graphik Also i turned it on so they can jump but they can't

    • @RandomguySNNS
      @RandomguySNNS 2 года назад

      @@Graphik also where do i put the momentum script

  • @Shortcuterfe2
    @Shortcuterfe2 2 года назад

    And another one🤣 3:02

  • @disqualify.
    @disqualify. 2 года назад

    hii made my nextbot game but there is just 1 problem
    the nextbots are going faster than light
    edit : nvm i fixed it i just made the nextbot walkspeed down to 400 instead of 999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999