I tried making a TOWER DEFENSE game on ROBLOX..

แชร์
ฝัง
  • เผยแพร่เมื่อ 11 ม.ค. 2025

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

  • @cakeobear
    @cakeobear 5 หลายเดือนก่อน +11

    Quick tip, change the dummy rigs SKIN COLOUR using the Body Colours object in it! It just helps, usually colouring the rig limb by limb usually bugs out the colours sometimes, so body colours is an alternative!
    Great video btw, keep up the good work!

    • @longnap_
      @longnap_  5 หลายเดือนก่อน +3

      thanks for the advice! :D

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

    Actually pretty nice! You are an underrated channel!

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

    My only question is how when a game is completed or defeated do you telaport yourself back to a lobby like how u do that?

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

      this should be the easiest part of this entire thing
      just make a script that fires when the conditions when game is completed are met
      For teleportation to lobby you could search a tutorial on how to teleport from a place to place within the same experience and fuse that knowledge with the conditions of game completion

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

      @@uth930 For the teleport script you could use something like this but you need to change up some conditions its just an example :) Good Luck!! :) local Teleportservice = game:GetService("TeleportService")
      local PlaceID = nil --your place ID
      local PlayersToTeleport = {}
      local TeleportOptions = Instance.new("TeleportOptions")
      TeleportOptions.ShouldReserveServer = true
      local function PlayerAddedTeleport()
      local Success, errorM = pcall(function()
      Teleportservice:TeleportAsync(PlaceID, PlayersToTeleport, TeleportOptions)
      end)
      if Success then
      print("good")
      elseif errorM then
      print("Error:" .. errorM)
      end
      end
      game.Players.PlayerAdded:Connect(function(PlayerAdded)
      table.insert(PlayersToTeleport, PlayerAdded)
      for i = 1, 10 do
      task.wait(1)
      print(i)
      end
      PlayerAddedTeleport()
      end)

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

      @@uth930Touched:ConnectTo(func)()
      If Touched then return false end
      end(

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

    Great vid!! I wanna play the td game!! ❤❤

  • @Void-t1h
    @Void-t1h 5 หลายเดือนก่อน

    You have amazing content I think you're going to be very successful!

  • @digery
    @digery 5 หลายเดือนก่อน +3

    Pretty cool but you forgot to add the animation. It’s pretty simple. Just put an animation in the script inside of the mob and write this in the script (make sure you name the animation Anim)
    local anim = script.Anim
    anim:Start() - - Before walking
    - - Walk
    anim:Stop() - - After walking
    Pretty simple right?
    I would also suggest to put the mob in the ReplicatedStorage and spawn it by copying and setting the Parent to Workspace.
    After the walking, you can safely destroy the rig because it’s still stored in RS.

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

      Tell me if you need the ReplicatedStore script also.

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

      You should not run aniamtions on the server as server animations tend to get more laggy and performance heavy. You could use a local script and you a event like childadded to run a function onto each zombie . This reduces stress on the server as the animations only run on the clients side.

    • @Noimad-YT
      @Noimad-YT หลายเดือนก่อน

      I’m gonna be honest I don’t think this is that great you didn’t make a tower defense game you made a humanoid walk across a path and stretched it out to 5 minutes the gnome code tutorial that shows you this does it in like 8 minutes while explaining everything I’m not trying to hate merely emphasize the lack of effort here

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

    YOUR REALLY REALLY GOOD

  • @TheOnlyBoxy
    @TheOnlyBoxy 5 หลายเดือนก่อน +6

    Good job gamerm8 jr

    • @Dev-Flame
      @Dev-Flame 5 หลายเดือนก่อน

      Bro, you are right 🤣

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

      Your right tho 💀

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

      he literally sounds like gamer m8 with a high pitch voice, Youre right!!

    • @elliot-u3r
      @elliot-u3r หลายเดือนก่อน

      fr

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

    Very underratted youtuber👍

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

    was this at all inspired by Gamer M8 because it seems very similar

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

      partially yes :)

  • @Xrz1ssc
    @Xrz1ssc 5 หลายเดือนก่อน +3

    2:06 how do u use other anims u didnt make

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

      you can get a model then go into animate in that model, export the animations to roblox and import it to your own rig :D

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

      i dont get it still when i look export in studio its just import

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

      could it be in publish to roblox, or save to roblox?

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

      do u need a plugin or smth
      or do i need to download the animation and use import

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

      @@Xrz1ssc nah i think its just in the default animate thing

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

    Game name?

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

    Do you have the scripts for the enemies to walk?

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

    What model did you use for the walk animation? 2:07

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

      it should show up in toolbox when you search "r6 animations" or something like that

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

      And how do u put it in the enemy? cause i suck at animating and i want one for my td game

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

    Can u make a tutorial for me pls ? Im making a tower defense but i have no knowledge on scripting

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

      Search up gnome codes he has a really good series for tower defense games

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

      Watch GnomeCode's series, it makes it from 0.

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

    I liked your content you can try to make simulator game

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

    outro music name?

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

    I don't understand..I watched many videos like this and I put the exact same script and I got an error message bout: 3 is not a valid member of Folder "Workspace.Waypoints".
    Can somebody explain this to me? I'm running out of time..

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

    very cool i sub

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

    I am really this bad at Roblox development..
    Even babies are surpassing me 😔

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

      he used a tutorial that you can use too silly

  • @Error-u7p
    @Error-u7p 5 หลายเดือนก่อน

    I wish I can make my game right now but I got to wait my dad bring my pc

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

    here before bro becomes famous remember me when you have like 1 mil subs

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

      🫡

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

    What script did you use to make it walk?

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

      ill probably show all the scripts and stuff in the final part

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

      @@longnap_ ok

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

    no hate or anything but this looks a lot like gamer m8's tds video

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

      yeah took alot of inspiration haha

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

      @@longnap_ oh haha good job i thought i watched gamerm8's vid twice

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

      Oh that explains alot

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

    I don’t get how you made the waypoints

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

      there is something within the humanoid properties called WalkToPoint
      you can mess around it

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

    nah winter brideges from tds map?

  • @BlockMaster542-3
    @BlockMaster542-3 5 หลายเดือนก่อน

    MAKE A PART 2 MAN

  • @shortsggplays-hk2cf
    @shortsggplays-hk2cf 5 หลายเดือนก่อน

    On my other channel , I have four fifty

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

    W

  • @longnap_
    @longnap_  5 หลายเดือนก่อน +3

    thanks for watching!

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

      Great vid for a Chanel with 300 sub :✓

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

    how did you get that topbar in roblox studio?

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

      in the beta features you can enable it im pretty sure :)

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

      @@longnap_ ty

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

    nice man

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

    Why does this Chan has like no subs poeple have to sub

  • @shortsggplays-hk2cf
    @shortsggplays-hk2cf 5 หลายเดือนก่อน

    You make way better videos than me. But I have more subscriber how.

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

    MAKE PART 2

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

      He cant because hes waiting for gamer m8 to make part 2

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

    E

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

    Buddy I think it’s better to don’t use a humanoid, use the tween service

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

      yeah humanoid are more laggy . Try not to use moveto() also