Infinite Obby Simulator Dev Log #1

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

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

  • @котлета-ч1ю
    @котлета-ч1ю Год назад +1

    Good job! I hope Blacky will be fine

  • @vezern.
    @vezern. Год назад +4

    I think you should changed some of the fonts, and simply some things like "Return" instead of "Return To Lobby" or something and change some of the emojis to images.
    Space some things out and only show the Gamepass Ui's if you have it (idk if you did that 🤷‍♂)
    Make some of the colors the same for the text (e.g the coin and hs text is black but the obbys beaten is white text (also you might wanna change obbys to obbies, as it makes more sense)
    thats all my suggestions 😨

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

      Thanks! The gamepass UI for jump and print only shows if you have it, but I will be sure to check out all the other thing you suggested!

    • @vezern.
      @vezern. Год назад +1

      @@NetheriteSTUDIOS okay!

    • @Sharky999.
      @Sharky999. Год назад

      @@NetheriteSTUDIOS can you make a tutorial how to make a banana?

  • @danieljelen11
    @danieljelen11 Год назад +2

    Pls add reaper and infector glove kit for slap battles i really like your videos so if you have time can you do it?

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

    Idea Slap Battles Tutorial, How Make Slap Royale Gamemode
    Like👍 = if want to do it Netherite STUDIOS Video Tutorial Slap Royale Gamemode
    DisLike👎 = if Don't Want it

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

    Rly love ur vid btw u should make default arena and slap royale part 13 slap battles tutorial

    • @NetheriteSTUDIOS
      @NetheriteSTUDIOS  Год назад +2

      Default arena is easy, I'm not sure if I'll do it. I want to do slap roysle but idk when

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

      @@NetheriteSTUDIOS if ur gonna do more slap battles tutorials, make a global leaderboard pls

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

      @@Buildable_Brix You don't really need to rely on Netherite Studios for everything. There are tutorials on how to make a global leaderboard

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

      @@dellcell9629 i already made one.

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

      @@Buildable_Brix then why were you asking?

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

    Can u show me how to make a game like ability wars

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

    you can draw the icons instead of using emojis, it can add more variety

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

    yo its me rip_insectxgiyuu the bacon hair:D

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

    Nice job dude

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

    how can i make a ability that summons a clone when press "E" key???

  • @El_Misterioso.
    @El_Misterioso. Год назад +1

    Hello

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

    bro how make plate in slap battles

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

    there is a Bug that says, Players.Nnichtvork.PlayerScripts.Default Ability:12: attempt to index nil with 'FindFirstChild' pls how to fix it

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

      Instead of :FindFirstChild() try :WaitForChild()

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

    Pls make slpa battle game

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

    can you help me please Netherite I previously used your tutorial no.1 and the leaderboard slaps and fling doesn't work :( can you help me please? script in comment

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

      local Tool = script.Parent.Parent
      local Anim = script:WaitForChild("Animation")
      local AnimTrack
      local hitChars = ()
      local debounce = false
      Tool.Activated:Connect(function()
      if debounce then
      return
      end

      debounce = true

      local humanoid = Tool.Parent.Humanoid
      if not AnimTrack then
      AnimTrack = humanoid:LoadAnimation(Anim)

      AnimTrack:Play()
      wait(2)
      debounce = false
      end)
      Tool.Hitbox.Touched:Connect(function(hit)
      if hitChars[hit.Parent] or not debounce then
      return
      end

      if hit.Parent:FindFirstChild("Humanoid") then
      local eChar = hit.Parent
      local plrChar = Tool.Parent

      local eHumanRootPart = eChar:FindFirstChild("HumanoidRootPart")
      local plrHumanRootPart = plrChar:FindFirstChild("HumanRootPart")

      if plrHumanRootPart and eHumanRootPart then
      script.Disabled = true
      eChar.Humanoid.Sit = true

      local force = Instance.new("BodyVelocity",eHumanRootPart)
      force.MaxForce = Vector3.new(2,2,2)*math.huge
      local direction = (eHumanRootPart.CFrame.Position-plrHumanRootPart.CFrame.Position).Unit
      force.Velocity = (direction + Vector3.new(0,1,0)).Unit*25

      local roation = Instance.new("BodyAngularVelocity",eHumanRootPart)
      roation.AngularVelocity = Vector3.new(1,1,1)*math.pi*math.random(1,5)
      roation.MaxTorque = Vector3.new(2,2,2)*math.huge
      roation.P = 5000

      wait(0.45)
      force:Destroy()
      roation:Destroy()
      eChar.Humanoid.Sit = false

      local player = game.Players:GetPlayerFromCharacter(Tool.Parent)
      player.leaderstats.Slaps.Value = player.leaderstats.Slaps.Value + 1
      end
      hitChars[hit.Parent] = true
      wait(2.5)
      script.Disabled = false
      hitChars[hit.Parent] = nil
      end
      end)

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

      Try replacing .Disabled with .Enabled and reverse true and falsd

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

      @@NetheriteSTUDIOS ty for trying to help me but when I tried it the animation wont work anymore and the leaderboard slaps still wont work as well as the fling so i turned it back but for some reason the anim dont work anymore but it did say
      Players.Justinivandechavez.Backpack.Glove.HitHandler:23: Expected identifier when parsing expression, got ')' - Studio - HitHandler:23 dyk what it meant?

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

      @@BROPLAYS_ANDSCRIPTS You messed up something while you were copying the code. Go in the hit handler script and try to find the error (the error will be underlined with a red color) then
      go to netherite's video and find the part where he coded the error part (hope that's not confusing) and change your error with the original code he gave in the video. (NOT the Entire Code)

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

      @@NetheriteSTUDIOS hi uh how do i make bob

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

    you sound depressed.

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

    Second