How To Make A Combat System In Roblox Studio [TUTORIAL]

แชร์
ฝัง
  • เผยแพร่เมื่อ 24 พ.ย. 2024

ความคิดเห็น • 2.3K

  • @vuukstudios7635
    @vuukstudios7635  ปีที่แล้ว +91

    JOIN OUR ACADEMY HERE: 🌟⬇
    www.whop.com/vuukstudios-academy

    • @MKing912
      @MKing912 ปีที่แล้ว +1

      It didn't work again, he says there is an animation problem. Let's make games together in the studio. Send me a friend request. My name is Muhammed_YTBR44.❤❤

    • @yusufkouba2449
      @yusufkouba2449 10 หลายเดือนก่อน +8

      bruh animation doesnt work :/ i spent long to do it now aint working u know how?

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

      Because just he wants to advertise so that we pay him 20 subscription to have the third 1 on his old discord and he made this video and to make views because it does a lot of cut + we have absolutely nothing and that he has except the basics of the script but that everyone little do it and so there it is.@@yusufkouba2449

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

      ​@@yusufkouba2449If you are having trouble getting the animation to play on a character, it could be that you chose r6 animation, but dont have a r6 avatar, or chose r15 animation but dont have a r15 avatar. This is easily fixed by changing it in build. It is possible that you messed up the animation code.

    • @SS_YT777
      @SS_YT777 10 หลายเดือนก่อน +5

      Moi sa ne marche pdt au moment de la deuxième animation

  • @Tamashinl
    @Tamashinl 6 หลายเดือนก่อน +1784

    For M1's ;)
    local plr = game.Players.LocalPlayer
    local UIS = game:GetService("UserInputService")
    local count = 0
    local debounce = false
    UIS.InputBegan:Connect(function(Input, IS)
    if IS == true then return end
    if Input.UserInputType==Enum.UserInputType.MouseButton1 then
    if debounce == true then return end
    if count == 0 then
    spawn(function()
    wait(0.1)
    count = count + 1
    end)



    local animation = plr.Character.Humanoid:LoadAnimation(script.Animation)
    animation:Play()
    wait(0.2)
    game.ReplicatedStorage.CombatHit:FireServer()
    print ("E key is pressed")

    end
    if count == 1 then
    count = 0

    if debounce == true then return end
    debounce = true

    local animation = plr.Character.Humanoid:LoadAnimation(script.Animation2)
    animation:Play()
    wait(0.2)
    game.ReplicatedStorage.CombatHit:FireServer()
    print ("E key is pressed")
    wait(0.3)
    debounce = false
    end
    end
    end)
    Like this so other people can see this

    • @TPZZ
      @TPZZ 6 หลายเดือนก่อน +18

      where do i put these 💀

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

      @@TPZZ fr

    • @pangarapkungcodm2145
      @pangarapkungcodm2145 6 หลายเดือนก่อน +4

      /copy

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

      @@TPZZ common sense dawg

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

      /copy

  • @Dom5S
    @Dom5S ปีที่แล้ว +86

    I'm very passionate about scripting/programming and I just started, hopefully I could reach the same level as you. Cool script

    • @vuukstudios7635
      @vuukstudios7635  ปีที่แล้ว +16

      Thanks brother, supporting you on the journey

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

      I just started thanks​@@vuukstudios7635

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

      ​@@vuukstudios7635I subbed

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

      2:06 how did i type that simbol

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

      @@Nerobzi i think that is debounce = false

  • @Kimoxdo
    @Kimoxdo 9 หลายเดือนก่อน +13

    Just checked your store and damn, I am probably buying some assets there for my own game! :) great stuff my dude

  • @supafriedd
    @supafriedd 9 หลายเดือนก่อน +207

    If you're having problems with the animation not working, make sure you have your game set to R6 under game settings in the home tab. If you modeled the animation in R6, your character will need to be in R6 for it to work

    • @willgotmontin6331
      @willgotmontin6331 9 หลายเดือนก่อน +14

      Thank you. You are a real fucking G and i really appreciate it. You just saved me like 3 hours.

    • @supafriedd
      @supafriedd 9 หลายเดือนก่อน +7

      @@willgotmontin6331 Np homie, took me a while to figure out what the problem was myself

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

      Bro you just saved my life!
      THANK U THANK U THANK U!!!!

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

      Thanks bro! i appreaciate it

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

      You’re the goat I love you

  • @Ribrail
    @Ribrail 6 หลายเดือนก่อน +422

    game.ReplicatedStorage.CombatHit.OnServerEvent:Connect(function(plr)
    print(plr)


    local hitbox = Instance.new("Part")
    hitbox.Parent = workspace
    hitbox.Anchored = true
    hitbox.CanCollide = false
    hitbox.Transparency = 1
    hitbox.Size = Vector3.new(5,5,5)
    hitbox.CFrame = plr.Character.HumanoidRootPart.CFrame *CFrame.new(0,0,-5)
    game.Debris:AddItem(hitbox,2)
    local Hits = {}
    hitbox.Touched:Connect(function(hit)
    if hit.Parent:FindFirstChild("Humanoid") and hit.Parent.Name ~=plr.Name then
    if not hit.Parent.Humanoid:FindFirstChild(plr.Name) then
    if Hits[hit.Parent.Name] then
    return
    end
    Hits[hit.Parent.Name] = true
    hit.Parent:FindFirstChild("Humanoid"):TakeDamage(10)
    wait(4)
    Hits[hit.Parent.Name] = false
    end
    end
    end)
    end)
    pls like after i had to write this down

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

      got you

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

      Lifesaver🔥

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

      man thanks alot my code it wasn't working for some reason i check everything no idea what i do wrong

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

      @@guzz263 no problem

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

      @@Ribrail still doesnt work

  • @Adrunkduck
    @Adrunkduck 10 หลายเดือนก่อน +78

    after the second line of combat server you can add task.wait(time u want to delay) to add windup to attacks

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

      thank you

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

      2:06 how did i type that simbol

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

      @@Nerobzi its an equal sign, the video got corrupted

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

      So how do i add a wind up i dont know how to script.

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

      @@noelbot6545 make an animation and put wait(number) before the hitbox creation

  • @Elijahsteak
    @Elijahsteak 7 หลายเดือนก่อน +817

    local plr = game.Players.LocalPlayer
    local UIS = game:GetService("UserInputService")
    local debounce = false
    UIS.InputBegan:Connect(function(Input, IS)
    if IS == true then return end
    if Input.KeyCode == Enum.KeyCode.E then
    if debounce == true then return end
    debounce = true
    game.ReplicatedStorage.CombatHit:FireServer()
    local animation = plr.Character.Humanoid:LoadAnimation(script.Animation)
    animation:Play()
    print ("E key is pressed")
    wait(3)
    debounce = false
    end
    end)
    Like so people can see this

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

      tysm, i couldn’t find what was wrong with my code but this helped me significantly 😭

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

      ive tried everything even copied this but it still doest work anyone know why maybe

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

      @@Ryan1491 did you insert animation id?

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

      thank you idk how to do the quotation marks

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

      bro thanks

  • @KineticCascade
    @KineticCascade 9 หลายเดือนก่อน +37

    one of the most helpful tutorials ive watched yet ngl

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

      real

  • @flqnt
    @flqnt 9 หลายเดือนก่อน +11

    Underrated TH-camr!! You can explain well and make others understand the concept easily, keep going dude! 🔥🔥

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

      Thank you for the kind words!

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

      ​@@vuukstudios7635how do you open the output thing?

    • @charlie-x1u3t
      @charlie-x1u3t 4 หลายเดือนก่อน

      Yea!

  • @Igotchubroski
    @Igotchubroski 7 หลายเดือนก่อน +8

    I figured out a common problem when making this is that your animation wont play. To fix this make sure ur game is published to roblox, then click game settings in the home tab, and then set your avatars to r6 or whatever model type you are using

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

      You're a life saver

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

      does it have to be public

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

      @@Peanut0933did u make it public it for it to work

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

      @@Vapixed no it doesn't👍

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

      UR THE GOAT

  • @hollow6893
    @hollow6893 ปีที่แล้ว +253

    My paralysis demon woke me to watch this video

    • @vuukstudios7635
      @vuukstudios7635  ปีที่แล้ว +39

      notification system is rigged 💀💀💀

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

      Babe wakeup vuuk dropped a new video!

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

      Fr bro

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

      relatable

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

      bros demon said “wake up and get your racks up”

  • @wufboo9547
    @wufboo9547 ปีที่แล้ว +55

    your such an amazing developer! i wish to see more eye appealing tutorials and paid assets in the future!

    • @vuukstudios7635
      @vuukstudios7635  ปีที่แล้ว +4

      🙏 appreciate it

    • @bardzofajnyziemniak
      @bardzofajnyziemniak ปีที่แล้ว +2

      You're*🤓

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

      @@bardzofajnyziemniakI caught that too 😂

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

      ​@@bardzofajnyziemniakno

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

      @@vuukstudios7635 how can i get my hands on the ragdoll module?

  • @rangergamestudios3353
    @rangergamestudios3353 9 หลายเดือนก่อน +22

    this was my first time coding ever and this tutorial made it so much easier thanks man

  • @strikingsnow787X
    @strikingsnow787X 4 หลายเดือนก่อน +65

    Im late, but heres one with 3 moves and a slight cooldown before reseting and if you dont finish the combo (stop by punch 1 or 2) then it resets after a second!:
    local plr = game.Players.LocalPlayer
    local UIS = game:GetService("UserInputService")
    local debounce = false
    local animationCount = 0
    local resetTime = 2
    local lastInputTime = 0
    -- Function to play the animation
    local function playAnimation(animation)
    local anim = plr.Character.Humanoid:LoadAnimation(animation)
    anim:Play()
    wait(0.2)
    game.ReplicatedStorage.CombatHit:FireServer(animationCount)
    end
    -- Function to check if the player is holding a tool
    local function isHoldingTool()
    local tool = plr.Character:FindFirstChildOfClass("Tool")
    return tool ~= nil
    end
    UIS.InputBegan:Connect(function(Input, IS)
    if IS then return end
    if Input.UserInputType == Enum.UserInputType.MouseButton1 then
    if debounce or isHoldingTool() then return end
    debounce = true
    lastInputTime = tick()
    if animationCount == 0 then
    playAnimation(script.Animation)
    print("M1 key is pressed - Animation 1")
    animationCount = 1
    elseif animationCount == 1 then
    playAnimation(script.Animation2)
    print("M1 key is pressed - Animation 2")
    animationCount = 2
    elseif animationCount == 2 then
    playAnimation(script.Animation3)
    print("M1 key is pressed - Animation 3")
    animationCount = 0
    wait(1.5) -- Cooldown before the first animation can be triggered again
    end
    if animationCount ~= 0 then
    wait(0.3) -- Time between animations
    end
    debounce = false
    end
    end)
    -- Coroutine to check for reset condition
    coroutine.wrap(function()
    while true do
    if animationCount ~= 0 and tick() - lastInputTime > resetTime then
    animationCount = 0
    print("Combo reset due to inactivity")
    end
    wait(0.1)
    end
    end)()
    please give credit!

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

      AYOOO, THX SO MUCH MAN, i was searching how to change the "E" to "Click", BUT WHEN U HERE, I DONT NEED TO SEARCH IT AGAIN, I WILL PUT U ON CREDIT

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

      thanks bro, it helped very much. i will give credit

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

      @@ItsDarknessmaster No problem dude

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

      how do i put my own animations in?

    • @Tribalism-q9l
      @Tribalism-q9l 3 หลายเดือนก่อน

      how do i remove the cooldown

  • @KFC_Crusader25
    @KFC_Crusader25 11 หลายเดือนก่อน +13

    tysm i had to make a game for a project and you made it 10x easier to understand all of theese codes, everyone makes it super complicated and you explain it using your own voice wich helped me a lot since others use robot voices making it harder to understand.

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

      same good luck

    • @cirkit-one
      @cirkit-one 8 หลายเดือนก่อน

      how do you understand this, I need help 😭

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

      ​​@@cirkit-oneI think you might have a learning disability bro

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

      ​@@cirkit-onethis isn't for beginners
      Maybe you should do simple things before moving to complicated stuff like this

    • @cirkit-one
      @cirkit-one 6 หลายเดือนก่อน

      @@tipeanimates837 alright .

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

    bro was going th speed of light ngl

  • @Adrunkduck
    @Adrunkduck 10 หลายเดือนก่อน +34

    the 9th line of combat skill can be replaced with
    if Input.UserInputType == Enum.UserInputType.MouseButton1 then
    to make it activate on left click

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

      ty man

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

      fr
      @@isymbol

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

      *MouseButton1Down or MouseButton1Up

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

      i was finding this only

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

      @@Fresh_TheOne just MouseButton1 is enough

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

    Just an FYI. for any of you where the combo system doesn't work as intended(auto does the second punch even if you didn't click twice) it is because the code automatically makes it so that count = 1 which triggers the second punch. to fix this create a function which tracks how many times the player clicks in lets say one second then if that click_count => 2... do second animation and punch. this should work. also you should generally make your code into a function when coding so that you do not have to type out the whole code again and again in seperate parts it saves quite a lot of time.

  • @NoMoveItMoveItPanda
    @NoMoveItMoveItPanda 9 หลายเดือนก่อน +14

    To everyone wondering how to change the animation from Rotate to Move :
    Press R On your keyboard, it will change the axis or something idk the name

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

      I saw it changing and thought "ain't no way how he do that"

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

      @@rimspee at first, same, till i saw someone comment it, and i wanna spread the message

  • @Mr_Fr34ky
    @Mr_Fr34ky 10 หลายเดือนก่อน +13

    FYI for everyone, figured out that if u made the animation in R6, that animation can only work on an R6 Player Avatar. Probably vice versa with R15 but I'm not sure. I used Moon Animator.

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

      @@willywelly6480
      Yes, or you could do what other battleground games do and whenever players spawn in, they automatically become R6.

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

      Bro tysm i didnt why my animation wasn't playing now it works ty

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

      yo can you tell me what did he do at 6:17 to make the animation smoother it dosen't appear in the video

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

      thank you

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

      2:06 how did i type that simbol

  • @boosted8592
    @boosted8592 ปีที่แล้ว +21

    the tutorial is good, but you could probably color up your steps a little more without saying "then do this, then this, then like this" but overall its very informative.

    • @vuukstudios7635
      @vuukstudios7635  ปีที่แล้ว +4

      👍

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

      @@vuukstudios7635 yo why cant i do dmg to the rig i copied 1-1 everything and still i couldnt dmg him

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

      @@Trayer-X ye me to

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

      @@vuukstudios7635 its not working for me when i press e can you please help

  • @Dunamis-h1h
    @Dunamis-h1h 5 หลายเดือนก่อน +4

    Im thinking of buying your course. Ive been looking for classes to learn how to animate, script, etc. glad I found you

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

    Coming back to this after actually learning to script is a whole different experience

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

      what guide did you use. im tryna learn

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

      @@JuniorweenTo learn how to code the best channel is BrawlDev, he explains how to script in great detail and goes over a lot of concepts. You can also watch The Dev King but some of his videos are outdated. Also a tip, when watching them take notes of each topic and make sure you understand how it work. Also if you don’t understand something use Ai like Claude or Chat GPT to help you understand.

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

    i have a big project but im Brazilian and dont have many videos in Portuguese about roblox studios, i use captions and ur channel help me so much! thx

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

      i think i know u ur thug right?

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

      eu também mano

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

      @@Enig_yt huh?

  • @i.a.legacy879
    @i.a.legacy879 11 หลายเดือนก่อน +112

    if you want the attack to be something else like instead of "e" you want it to be left mouse button, then just replace it with this
    if Input.UserInputType == Enum.UserInputType.MouseButton1 then

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

      Or we can just get the mouse from the player?

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

      Thx it is a great help, i wanted it to be m1.

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

      Handsome profile pic

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

      what about mobile?

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

      @@jannatunnayeem3631 its more simple but that works you do you

  • @SushiGaming_YT
    @SushiGaming_YT ปีที่แล้ว +12

    So to make a combat system like the strongest battle grounds i need to continue the combo until 4 and using knockback effects for the first 3 combo then the ragdoll effect for the 4th, but for the 4th combo system I would need to somehow make the hot key to go in order like for example "space then e" but how am I able to make the 4th combo different based off which hot key you choose, for example one 4th combo does a uppercut while the other 4th combo does a down slam? Also how to I make the hotkey click instead of "e" do I just substitute "e" for "click" in the script? Sorry if it's a long read I have no prior knowledge of scripting and I'm extremely curious. Please make a part 2
    Tldr: how do I make the 4th combo do different set of combo based on the hot key I chose? How do I make the hot key so you click instead? Please make a part 2

    • @tazurajulianseditor7389
      @tazurajulianseditor7389 ปีที่แล้ว

      for the E part, to make it m1s instead of e to punch, just uh replace e with MouseButton1, when its mousebutton1 then it translates it for mobile too, so for mobile just click the screen.

    • @SushiGaming_YT
      @SushiGaming_YT ปีที่แล้ว

      @@tazurajulianseditor7389 thanks bro

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

      ​@@tazurajulianseditor7389thxxx

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

      doesn't work.@@tazurajulianseditor7389

  • @Haroldhai
    @Haroldhai 10 หลายเดือนก่อน +3

    OMG THIS VIDEO IS REALLY REALLY HELPFULL THANKS MAN

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

    loki, this vid the reason i subbed to you

  • @sgg123gaming6
    @sgg123gaming6 9 หลายเดือนก่อน +4

    How to add 2 audio effect? 1 when hitting a hitbox and 1 for hitting nothing (air)

  • @kgame3825
    @kgame3825 11 หลายเดือนก่อน +8

    Hello, a question: How do you switch between rotating and moving modes while creating an animation??

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

      click r

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

      @@theblueguy9403 thanks so much

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

      The studio buttons

  • @vipex.v
    @vipex.v ปีที่แล้ว +6

    Tip: instead of doing `if value == true then` just do `if value then`.

  • @senseiatlas8967
    @senseiatlas8967 ปีที่แล้ว +4

    Love your videos man you help me so much with my game thank you

    • @vuukstudios7635
      @vuukstudios7635  ปีที่แล้ว +1

      Thank you brother that motivates me 🥳

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

      2:06 how did i type that simbol

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

    Thanks for this bro, Now I can start creating this game!!

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

    This helped me so much to follow my dream of making a fighting game it will be hard but will be great hopefully in the end! Because of you, you have made my day by watching this and because of that I subbed and joined the discord. I hope I will manage to do this because it is very hard and very big. I think you will help other people as well with this and other videos. Thanks a lot!

  • @Klaris530
    @Klaris530 9 หลายเดือนก่อน +19

    for the poeple that are complaining about the animation beeing on loop. then just type
    local animation = plr.Character.Humanoid:LoadAnimation(script.Animation)
    animation.Looped = false
    animation:Play()
    so your animation isint looping whenever you click "E key"

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

      ty

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

      @@erasmobelt np

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

      @@Klaris530 it still looped for me why?

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

      @@NewbieShineYT you probably pasted it in the wrong place

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

      Under the "local animation =plr.character.humanoid:LoadAnim action(script.animation)
      Type "animation.looped = false"
      And then "animation:Play()"

  • @Quirkiestguy1446
    @Quirkiestguy1446 5 หลายเดือนก่อน +151

    your store is damn expensive
    Edit: nah who the hell liking my comment tell me
    EDIT2:OMG IM FAMOUS THX GUYS

  • @itz._.ameliezzz
    @itz._.ameliezzz 3 หลายเดือนก่อน +8

    my animation wont play when i press E key but i did exactly as u said...

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

      Exactly gotta find a newer version or smth

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

      same

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

      Did you make the game r6 or r15 only?

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

      @@daiu3d596 nah it does work trust u prob missed typed something

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

      U did it wrong

  • @dragon_gameryt9392
    @dragon_gameryt9392 4 วันที่ผ่านมา +1

    does anyone know why my rig builder is grayed out even the I set it to r6 and published to roblox

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

    When I'm working on the animation, I can't press the bada on the character, how come???

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

    At this point i dont even know what i wanna be, a couple days ago i was just watching how to make manga tutorials now im watching how to script and code stuff

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

      i feel the same way i suddenly am on a sugar fueled coding rampage then im grinding box fruits then im beating my skull into a wall because damage no damage then im drawing stuff and now im looking into the stock marke- ooh now i am a conputer technicia- wait those books look nice

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

      ​@@ilovecats2767fr

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

      thats adhd my guy, try knowing more about adhd.....
      😈

    • @karuaCOM
      @karuaCOM 9 หลายเดือนก่อน +3

      @@sipiersx5948 as someone who has adhd that's not what it is at all, he just has a low attention span.

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

      BRO I DID THE EXACT SAME STUFF!!!! fisrt manga tutorial then scripting punching games

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

    Is it normal that when i press "E" only one time it does the two M1's?
    I wanted to like, click one time, then click again to do first animation and then second

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

      same problem

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

      try this script
      local plr = game.Players.LocalPlayer
      local UIS = game:GetService("UserInputService")
      local count = 0
      local debounce = false
      UIS.InputBegan:Connect(function(Input, IS)
      if IS == true then return end
      if debounce == true then return end
      if Input.UserInputType == Enum.UserInputType.MouseButton1 then
      if count == 0 then
      count = count + 1
      local animation = plr.Character.Humanoid:LoadAnimation(script.Animation)
      animation:Play()
      game.ReplicatedStorage.CombatHit:FireServer()
      wait(0.2)
      print("MouseButton1 is Pressed")
      wait(0.6)
      debounce = false
      elseif count == 1 then
      count = 0
      debounce = true
      game.ReplicatedStorage.CombatHit:FireServer()
      local animation = plr.Character.Humanoid:LoadAnimation(script.Animation2)
      animation:Play()
      wait(0.2)
      print("MouseButton1 is Pressed")
      wait(0.2)
      debounce = false
      end
      end
      end)

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

      it worked for me

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

      You know an m1 means left mouse click right?

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

      I found out the problem after line 22 of combat skill. Press enter and type "wait(0.5)" then press enter and put this "debounce = false" idk how to make it you click once. It does one animation. Click again it does the other animation.

  • @Gematrio_1
    @Gematrio_1 10 หลายเดือนก่อน +4

    How do you make a script where you can equip and unequip a sword? And how do you add it to the animation?

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

      To equip a sword put it in the starter pack

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

      I don't know how to animate

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

      @@joelrobin9485 I do! literally just do what he did in this video! make sure to put the script in the sword though!

  • @DA-hd7vt
    @DA-hd7vt 2 หลายเดือนก่อน

    bro tysm this vid helped so much
    Keep up the good work!!!

  • @ArtsBacon
    @ArtsBacon 4 หลายเดือนก่อน +6

    I... I.. my brain hurts.

  • @accountname6603
    @accountname6603 6 หลายเดือนก่อน +3

    > Follows tutorial
    > "Oh right time to add the ragdoll"
    > Goes to link to get the asset
    > 20$/month requirement to join the discord

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

      lmfaorn

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

      fr bro im looking for the module script

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

    Help! I am at 6:00, and it is working but the animation is like, its sloppy, the animation I made is amazing, but whenever I click e my character just goes "eh" and barely throws the punch and I don't know why!

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

      Wait I fixed it, if someone has this error, make sure your animation is set to Action, then it works!

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

      You are actually a lifesaver tysm

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

      @@scottherring-q9j spent 2 hours tryna fix and your comment saved me

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

    This helped me make combos! Nice video.

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

    Man i was so excited to join the discord for the Academy until i found out it cost money but i still respect that since he gotta make money some how

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

      The discord for the assets is free

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

      @@vuukstudios7635 But the discord link itself isnt in description is it? Maybe im blind

  • @8553animations
    @8553animations 9 หลายเดือนก่อน +3

    Got a question, why when i always click E i get an error that says that "Animation is not a valid member of LocalScript" how can i fix it?

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

      Same

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

      @@Wise_Phoenix i actually just fixed it, i had to redo the script and put the animation with the local script with its id again, not too hard

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

      @@8553animations so in on ther word I have to redo it bruhh

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

      @@Wise_Phoenix dont worry bro, if you keep going you will start typing faster

    • @SandraLopez-rk6lu
      @SandraLopez-rk6lu 9 หลายเดือนก่อน

      @@8553animations can you explain it simpler? Happened to me, like what the code should be like 😢

  • @ArabicScience-
    @ArabicScience- 10 หลายเดือนก่อน +7

    The animation didn t play for me

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

      same

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

      Sometime it doesn't work try publishing the game and playing it like someone and see if it works that's how I got it to work

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

      change ur avatar to r6 if you made the animation an r6 animation

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

      ​@@BraydenDoes_Stuffwhere do you get the r6 avatar?

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

      ​@@fluffypeat2191you don't need to do that maybe you typed. Instead of : or misspelled animation

  • @_BaconSupreme_
    @_BaconSupreme_ 9 หลายเดือนก่อน +4

    how do you press on the EKD?????

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

    this video helped me make anims for my game so thank u ur the best

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

    For those wondering in the part he says to copy the id you can do it by importing your animation into Roblox on the 3 "..." And then once it uploads you can either copy the id in the screen that shows you "you successfully uploaded to Roblox" or go to the toolbox and go into your animation and copy the id

  • @JOSIAHXInfinite
    @JOSIAHXInfinite 7 หลายเดือนก่อน +16

    the scrip for ServerScrip I had a problem with my hitting but now it works...
    game.ReplicatedStorage.CombatHit.OnServerEvent:Connect(function(plr)
    print(plr)
    local hitbox = Instance.new("Part")
    hitbox.Parent = workspace
    hitbox.Anchored = true
    hitbox.CanCollide = false
    hitbox.Transparency = 0.4
    hitbox.Size = Vector3.new(5,5,5)
    hitbox.CFrame = plr.Character.HumanoidRootPart.CFrame *CFrame.new(0,0,-5)
    game.Debris:AddItem(hitbox,2)
    local Hits = {}
    hitbox.Touched:Connect(function(hit)
    if hit.Parent :FindFirstChild("Humanoid") and hit.Parent.Name ~= plr.Name then
    if not hit.Parent .Humanoid:FindFirstChild(plr.Name) then
    if Hits[hit.Parent.Name] then
    return
    end
    Hits[hit.Parent .name] = true
    hit.Parent:FindFirstChild("Humanoid"):TakeDamage(20)
    wait (4)
    Hits[hit.Parent.Name] = false
    end
    end
    end)
    end)
    no problem

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

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

      thanks pookie!!

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

      UR THE GOAT BRO

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

      The hero I needed you literally ARE the star man

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

      i did it but it just won't stop like i press 1 time and then it does the m1 multiple time can you find the way

  • @rolpol8536
    @rolpol8536 9 หลายเดือนก่อน +7

    what is missing here:
    local plr = game.Players.LocalPlayer
    local UIS = game:GetService("UserInputService")
    local debounce = false
    UIS.InputBegan:Connect(function(Input, IS)
    if IS == true then return end
    if Input.KeyCode == Enum.KeyCode.E then
    if debounce == true then return end
    debounce = true
    game.ReplicatedStorage.CombatHit:FireServer()
    local animation = plr.Character.Humanoid:LoadAnimation(script.Animation)
    animation:Play()
    print ("E key is pressed")
    wait(3)
    debounce = false
    end
    end)

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

      There is nothing wrong and nothing is missing. Are there any errors in the output?

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

      r6 game setting

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

      if you made the animation in r6 you need to make the game r6 only and turn ur avatar into r6

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

      Can u do a left click mouse one

  • @catherinesnow781
    @catherinesnow781 8 หลายเดือนก่อน +40

    Why didn't the code for the animation work

    • @pumpkin1997
      @pumpkin1997 6 หลายเดือนก่อน +4

      Does not work for me either

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

      @SkepticSage_ posted a comment a bit below and it fixed it, but for summary in game settings you have to make the characters R6

    • @iLOVEpatatoes
      @iLOVEpatatoes 6 หลายเดือนก่อน +3

      My games in r6 and it still didn’t work

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

      ​@@pumpkin1997 where the part to make ur game r6

    • @mahirahmed4992
      @mahirahmed4992 6 หลายเดือนก่อน +4

      Maybe actually understand the code instead of copy and pasting

  • @bentostring428
    @bentostring428 3 หลายเดือนก่อน +111

    Bro types too fast

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

      Cuz he professional

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

      I KNOW RIGHT!!

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

      Assuming you have a basic understanding of lua

    • @Big-r9v
      @Big-r9v 3 หลายเดือนก่อน +4

      I think it's because that he never touches grass and he's always on his computer typing

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

      Bro types to slow (you)

  • @RelaxingSounds-j8n
    @RelaxingSounds-j8n 4 หลายเดือนก่อน

    On my opinion This is probably the second best script video😊

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

    why cant you just paste everything you wrote in the description?

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

      @MusicMaster320 cus you will not learn anything and copy paste it

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

      ⁠@@SayouPlaI don’t think you ever will by just watching a video

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

      @@SayouPla This isn't school, buddy

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

      lazy ahh why dont you just watch the video try learning the script not just copy and pasting

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

      ​@@Leo44256you will though depending on the video if he just shows the code ofc not but if he actually explains what everything does you can learn from it.

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

    its not working so far i think im cooked

  • @OldSport_VR
    @OldSport_VR 7 หลายเดือนก่อน +4

    it didn't work for me🙁

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

      Did do everything right ?

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

      You need to be r6

    • @ShanksOnEdits
      @ShanksOnEdits 11 วันที่ผ่านมา

      @@colcolnutt u can be r15 as long as your animation is r15

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

    can you make a video showing how to make gui that shows the buttons to press for each attack, with a cool down counter. and maybe show us how to apply this code so you can use a controller to attack as well.

  • @Rune..
    @Rune.. 14 วันที่ผ่านมา +1

    Yo can someone help me, I set my game setting and rig to the same r6 I have the correct animation id and code and it doesn’t play, it prints out the things in the output but doesn’t play the animation

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

    your video is very useful, THANK YOU SO MUCH BRO

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

    This man deserves way more followers he saved our lifes 🔥🤝🙏

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

    I have been having some issues with the hitbox position not really being consistent, like, there’s time it will spawn inside the player, or if the player presses E and turns away quickly the hitbox will be behind the player
    Edit: Fixed! It was just the small delay between the animation playing and fireing the server, really shows how even small time amounts can make a huge difference!

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

      how did you fix the delay? I have a problem where if your walking and punch the hitbox is always behind

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

      @@jeleppe6164 oh, I did it by adding that delay he mentions, between the animation and fireing the Remoteevent

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

    this is amazing, but could you also make a tutorial for blocking? like blocking the attacks

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

    I know Lua and this is a little bit hard but you make it look easy

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

    THANK YOU SO MUCH BRO I LOVE YOU YOU MADE MY WHOLE LIFE

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

    everything is perfect but i can't rotate the torso of r6 rig

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

    BRO IM NEW TO SCRIPTING PLS SHOW ME HOW TO PUBLISH AND COPY ID BC I CANT, IT DOESNT EVEN SHOW ANYTHING WHEN I CLICK PUBLISH TO ROBLOX, PLS HELP

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

      click file in the top left

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

    this video made me realize that I will not be able to make the game I wanted to

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

    w video, needed to know how hitboxes work so that i could make my own combat game, very cool.

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

    Thank you so much after learning scripting this video helped me understand more abt everything like bro thank you

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

    How do you publish it to eoblox and get ID?

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

    I cant rotate the head or the torso! Please help! can u publish the animations or link them in your discord!

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

    My animation wont appear when i press E and i have all the coding right, what could be my problem?

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

    yo W vid, i would like to see basketball tutorial. i always wanted to create basketball game like basketball legends. I will be glad if you will do a tutorial on doing how to make this game.

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

    Outdated or sum shish dawg, first few lines dont even work, I paused every single frame, copied every small detail, and it still didnt work

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

    Hi man, ur this tutorial are really amazing!
    I wanna know, how to blocking this attacks? Like did u have video about it?

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

    does your course include just the basics or stuff advanced too? will we be project learning? once done with course and if we keep the course active can we directly learn from u?

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

      Yes the course is made for advanced people

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

      @@vuukstudios7635 Yo man idk why but the hitbox doesnt show, im like halfway through the video can u help me?

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

    Hey bro, I just started making a battlegrounds game but I'm facing some difficulties. Your help was useful, but when you started showing animations within the first 5 minutes, I couldn't save it

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

    tysm man i can finally create my own game :)

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

    Im trying to make a berserk game its my first time im doing game so this tutorial was useful so thx man 😁

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

      good luck with that game
      put the link in this comment when its ready so we can test it out

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

    Ty

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

    Like blox fruits how do you make it need you to select an item before attacking? I’d be really helpful thanks.

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

      You have to make a tool, and make a script to check if it is equipped, and to detect when you click, and then add all the other script

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

    omg thank you dude now am making a game using this tutorial i'll credit u!!!

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

      did you finish your game?

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

      @@parker3139 i think so

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

      whatsz it called?

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

    Someone else's print("E key is pressed") doesn't print when pressed E?

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

    This was so helpful for me to start coding in roblox. thank you for this video

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

    if yall get an error on line 9 at the beginning write input with a small i not a big like in the video that fixed it for me

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

    It wont work for me, I'm stuck at the first part for about 2 days now I scrolled through the entire comment section to find an answer but it seems like nobody replied to anyone with the problem I have: I wrote the script 1 of 1 and I checked multiple times but the output wont print "E is pressed". I thought it may not be displayed for some reason so I moved on to the next part and made the animation but the animation didn't play when I pressed E so I was sure that it isn't the output... And now I'm pretty much stuck here is my script btw:
    local plr = game.Players.LocalPlayer
    local UIS = game:GetService("UserInputService")
    UIS.InputBegan:Connect(function(Input, IS)
    if IS == true then return end
    if Input.KeyCode == Enum.KeyCode.E then print ("E is pressed")

    end
    end) I really hope that someone will eventually help me since I searched the entire web for the reasons: num key locked, Other scripts, output bar. But still nothing solved the problem of mine leaving me frustrated.

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

      ur not alone bro I have been stuck on the same part idk what I did wrong

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

      heres my script(that works, idk if it will for you but it did for me)
      local plr = game.Players.LocalPlayer
      local UIS = game:GetService("UserInputService")
      local debounce = false
      UIS.InputBegan:Connect(function(Input, IS)
      if IS == true then return end -- if player is in chat no attack
      if Input.KeyCode == Enum.KeyCode.E then -- if e then
      if debounce == true then return end -- is debouce is true then STOP
      debounce = true
      game.ReplicatedStorage.CombatHit:FireServer()
      local animation = plr.Character.Humanoid:LoadAnimation(script.Animation) -- get the animation that is child of script
      animation:Play()
      wait(0.2) -- delays sfx
      game.ReplicatedStorage.CombatHit:FireServer()
      print("E is pressed!")
      wait(1) -- adds cooldown of x secs
      debounce = false
      end
      end)

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

      Still doesnt work but thx@@MetaBellaOfficial

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

      try redoing the tut?@@Nick-dz3lp

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

      @@MetaBellaOfficial dont work for me aswell.

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

    Whenever I open Roblox studio the things on the right don’t pop up anymore. What do I have to do to fix it? Please someone help me

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

    Bro, do we need to lean coding in order to make games, even outside roblox?

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

      yes, of course! coding is 90% of game making. making a sucsessful game inside of non-coding game makers is nearly impossible, programmign is telling a computer what to do.

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

    Please help!!! I followed everything perfectly fine, and have rewatched the whole video 5 times restarting, no matter what i do when i play and click E it does nothing. whats up??

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

      Same here

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

    please consider replying me... how to you animate head and torso in r6? i cant animate the head and torso...

    • @RyeAracena-EDITS
      @RyeAracena-EDITS 8 หลายเดือนก่อน

      You mean idle?

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

      Actually i meant that in the video he animated the head and torso... But when i try to animate the head and torso... I cant select it to animate

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

      @@shockwavexd4984 same bro, write to me if you have managed to fix the problem

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

      @@shockwavexd4984 i think your RIG to ANIMATE is WRONG

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

    I can't make a new rig for the animation part.

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

    My laptop got off thank god I save it and my hearth was beating fast 😂

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

    Very cool vid 👍

  • @BAKYBOYMAHN-fe6lg
    @BAKYBOYMAHN-fe6lg 5 หลายเดือนก่อน

    This is really usefulll ❤❤❤❤