How to make an EXPLOSION SKILL in ROBLOX STUDIO!

Поділитися
Вставка
  • Опубліковано 30 вер 2024

КОМЕНТАРІ • 446

  • @atrain4034
    @atrain4034 Рік тому +133

    A tutorial that's straight to the point and isn't playing god awful ear bleeding inducing royalty free dubstep music in my ear? You got yourself a like.

    • @atrain4034
      @atrain4034 Рік тому +10

      Also adding sounds to said skills, how would I go about doing that.

    • @SnakesRobbs
      @SnakesRobbs  Рік тому +12

      @@atrain4034 when you do the particles (if you have any) you clone the sound that you have inside the SERVER script and add it to the characters torso or something, and then play it, wait its playtime then destroy it. I would do it that way.

    • @SnakesRobbs
      @SnakesRobbs  Рік тому +6

      @@atrain4034 and thanks for the like!

    • @MarxismOfficial
      @MarxismOfficial Рік тому

      agreed

    • @MarxismOfficial
      @MarxismOfficial Рік тому

      agreed

  • @pillo9645
    @pillo9645 Рік тому +11

    hello ur guide is so easy to understand but can u make a skill that can grab other players like dragging them to the ground?

    • @beedrillking4023
      @beedrillking4023 11 місяців тому +2

      you could use attachment on the victim players primary part and attach it to the hand it drags on and play the animation. then you could script the damage which is simple. maybe add velocity if you want to scrape the player on the ground.

  • @NoobyGD
    @NoobyGD Рік тому +4

    i give up. im just gonna delete it all again.

  • @AgroFishOfficial
    @AgroFishOfficial 2 місяці тому +1

    im crying :_( why on 12:47 you have rings, ring smoke, lines. But for me this don't working pls help :(

  • @rileycdgaming4297
    @rileycdgaming4297 Рік тому +2

    Bro why am I laughing at parent wait for child 💀

    • @blazeyn2
      @blazeyn2 Рік тому

      me to like bro wth roblox

    • @ducNguyen-pw1fv
      @ducNguyen-pw1fv Рік тому

      Yeah sometimes coding language is bizarre

  • @Mxstic07
    @Mxstic07 Рік тому +1

    me each time I see db: DRAGON BALL!

  • @cenn2
    @cenn2 Рік тому +18

    Good tutorial but a tip for newbies: remember to learn modules so you can make your skills easier to access and more organized

    • @noodlepup4288
      @noodlepup4288 Рік тому

      Like just the skill part?

    • @cenn2
      @cenn2 Рік тому +1

      ​@@noodlepup4288 Well you could also make a module for inputs, particles and basically everything but if youre making a small game then you only need modules for skills and other basic game mechanics

    • @leessoon
      @leessoon Рік тому +1

      Whats a module?

    • @cenn2
      @cenn2 Рік тому

      @@leessoon a module allows you to store all functions and logic inside one script that can be accessed by other scripts (following replication rules), its basically a great way to not repeat code all the time

    • @malacmelody.9663
      @malacmelody.9663 Рік тому

      @@cenn2 Thanks helped alot :)

  • @akillerastudio8981
    @akillerastudio8981 Рік тому +1

    Can you make this can kill someone but not All just that much to Enemy can be low and I will subscribe.

  • @Bbe78
    @Bbe78 8 місяців тому +2

    errors please help. 1. the particle is not emitting when i equip the tool. 2. the animation is not playing and i changed avatar type to r6. 3. whenever i equip the tool a part appears and when i unequip its gone. the client script: local db = false
    local dbtime = 5
    local equipped = false
    local animation = script:WaitForChild("Explode")
    script.Parent.Equipped:Connect(function()
    equipped = true
    end)
    script.Parent.Unequipped:Connect(function()
    equipped = false
    end)
    script.Parent.Activated:Connect(function()
    if equipped == true then
    if db == false then
    db = true

    local char = script.Parent.Parent
    local humanoid = char:WaitForChild("Humanoid")
    local charge = script.Parent:WaitForChild("Charge")
    local explode = script.Parent:WaitForChild("Explode")

    local anim = humanoid:LoadAnimation(animation)
    anim:Play()

    anim:GetMarkerReachedSignal("Charge"):Connect(function(parameter)
    print(parameter)
    charge:FireServer()
    humanoid.WalkSpeed = 0
    end)
    anim:GetMarkerReachedSignal("Explode"):Connect(function(parameter)
    print(parameter)
    explode:FireServer()
    wait(0.5)
    humanoid.WalkSpeed = 16
    end)

    wait(dbtime)
    db = false
    end
    end
    end) the server script: local charge = script.Parent:WaitForChild("Charge")
    local explode = script.Parent:WaitForChild("Explode")
    charge.OnServerEvent:Connect(function()
    local char = script.Parent.Parent
    local humanoid = char:WaitForChild("Humanoid")

    local chargepart = script:WaitForChild("ChargePart"):Clone()
    chargepart.CFrame = char.HumanoidRootPart.CFrame
    chargepart.ParticleEmitter.Enabled = true

    coroutine.wrap(function()
    wait(0.4)
    chargepart.ParticleEmitter.Enabled = false
    end) ()

    explode.OnServerEvent:Connect(function()
    local explodepart = script:WaitForChild("ExplodePart"):Clone()
    explodepart.Parent = char
    explodepart.Position = char.HumanoidRootPart.Position
    explodepart.ShockWave:Emit(100)
    end)
    end) pls help

  • @kiwiboo_1
    @kiwiboo_1 Рік тому +18

    Do you think you could eventually make a video about making a character in general? Like, custom idle holding a weapon, with 1 skill, and a left click combo thing, and a block? It’s a heavy ask, but even having one of these things I mentioned as a tutorial would be cool- even if it was just an idle- or a block.
    Thanks for the tutorial, btw!

    • @rbloonstd6248
      @rbloonstd6248 Рік тому

      Yea he should do that

    • @eggomyleggos5247
      @eggomyleggos5247 Рік тому +2

      you really just asked for a whole aba character

    • @kiwiboo_1
      @kiwiboo_1 Рік тому +2

      @@eggomyleggos5247 Hey I mean, it’d make a nice tutorial.

    • @egneus7651
      @egneus7651 Рік тому

      it’s pretty simple, just search up how to change idle animations then change the idle animation when you equip your weapon and for the other stuff you should search up AmPro he’s got all the things your looking for

    • @egneus7651
      @egneus7651 Рік тому

      His fist combat tutorial has blocking, ABA style combat with uptilt as well

  • @Dark_Zel
    @Dark_Zel 9 місяців тому +1

    How do I get that texture pack or whatever the effects are called? 6:14

  • @mistyking627
    @mistyking627 Рік тому +1

    nothing worked :(

  • @therealsolidfr
    @therealsolidfr Рік тому +2

    Guys this doesn't work he speeds up all the parts you need and makes too many mistakes and he keeps saying " if you want to" but then its something you need then your entire script will break and it won't work its a waste of 4 hours

  • @BTXDP
    @BTXDP Рік тому +1

    How to make the damage btw?

  • @SnakesRobbs
    @SnakesRobbs  Рік тому +13

    If youre unsure about anything contact me through discord! @snakesrobbs#1509

    • @AlexDoge11
      @AlexDoge11 Рік тому

      I need to ask that how did you learnt scripting because i wanna be same scripter to you i want to try that

    • @SnakesRobbs
      @SnakesRobbs  Рік тому +2

      @@AlexDoge11 just loads of tutorials and trial and error, when something doesnt work try use your brain and think about what you need to solve problems, and the biggest thing of all, PATIENCE AND DEDICATION

    • @AlexDoge11
      @AlexDoge11 Рік тому

      @@SnakesRobbs Okay, just i asked that reason to i try that to learn scripting, but thanks! :D

    • @AlexDoge11
      @AlexDoge11 Рік тому +1

      @@SnakesRobbs And btw what youtuber what you recommend to i watch to learn script ?

    • @SnakesRobbs
      @SnakesRobbs  Рік тому +3

      @@AlexDoge11 i recommend alvinblox, his tutorials are really easy to understand for beginners!

  • @DecE-mq3wh
    @DecE-mq3wh Рік тому +4

    Hello, I'm kinda confuse why the animation in local anim = humanoid:LoadAnimation(animation) is underlined, is there something I missed?

    • @SnakesRobbs
      @SnakesRobbs  Рік тому +1

      Check if you definitely have that in a local script and if you have humanoid and animation defined

    • @DecE-mq3wh
      @DecE-mq3wh Рік тому +1

      Alright, thank you so much!

    • @SnakesRobbs
      @SnakesRobbs  Рік тому +1

      @@DecE-mq3whyou’re welcome!

  • @AriEri.
    @AriEri. 15 днів тому

    nah that's real... Confused over the animation not Working, Just to realize It's in R6 Not R15...
    I SPENT 1 DAY SEARCHING FOR SOLUTION... :(

  • @Stea1th556
    @Stea1th556 Рік тому +19

    This happens to be a video I will watch

    • @SnakesRobbs
      @SnakesRobbs  Рік тому +3

      yes

    • @Cartooncatedits
      @Cartooncatedits Рік тому +6

      ​@@SnakesRobbs can you make a vid about a totorial how to make Just a punch but IT makes demage pls

    • @amanewithjesus
      @amanewithjesus Рік тому

      @@SnakesRobbs For God so loved the world that he gave his one and only Son, that whoever believes in him shall not perish but have eternal life

    • @amanewithjesus
      @amanewithjesus Рік тому

      @@Cartooncatedits For God so loved the world that he gave his one and only Son, that whoever believes in him shall not perish but have eternal life

  • @ImTail
    @ImTail Рік тому +3

    How is this easier that I might think?
    My brain just melted💀

    • @drip2575
      @drip2575 Рік тому +2

      exactly i just rage quitted it was like going through the depths of hell ☠

  • @Channal1009
    @Channal1009 3 місяці тому +1

    Can I no animation

  • @Pixel6588
    @Pixel6588 Рік тому +2

    What plugin are you using for the particles? Is it even a plugin?? Please I need to know

    • @rANNdoMFNIcknMae
      @rANNdoMFNIcknMae Рік тому

      Select part firstly, secondly, ad attachment, lastly, add particleemitter orwhat

  • @gameplayz12321
    @gameplayz12321 Рік тому +1

    do you know hot to make the animation event on iMac?

  • @AriEri.
    @AriEri. 15 днів тому

    I have a Question?
    How do you check how much the Emit() ? on a particle

  • @bannnavr
    @bannnavr 3 місяці тому

    ive got a problem when ever i click it dont work and it say "Loadanimation is not a valid member of humanoid" please respond as quick as you can or i can try fix it myself

  • @mega-god1
    @mega-god1 Рік тому

    bro fake i wasted 30 minutes COPY THE SCRIPT

  • @NoobyGD
    @NoobyGD Рік тому

    why doesn't it work :( i just spent nearly 2 hours trying to make this. my fingers are hurting and im just sitting here crying for no reason at all. so can you PLEASE just make a working pastebin or something where i can copy all the scripts knowing that it will work? please just help me

  • @PhantomRybicki
    @PhantomRybicki 3 місяці тому

    why does this not work for me? i followed all steps but nothing happened, the particles just sit on the floor and my animation wont work

  • @kingbacon358
    @kingbacon358 Рік тому +4

    After 2 weeks i came back i realize u reach 150 sub congratulations!!!

    • @SnakesRobbs
      @SnakesRobbs  Рік тому +1

      oo just saw that too, thanks!

    • @kingbacon358
      @kingbacon358 Рік тому

      @@SnakesRobbs giveaway?

    • @SnakesRobbs
      @SnakesRobbs  Рік тому +1

      @@kingbacon358 yup im doing a video on that, maybe ill do it for christmas

    • @kingbacon358
      @kingbacon358 Рік тому

      @@SnakesRobbs ok

    • @kingbacon358
      @kingbacon358 Рік тому

      @@SnakesRobbs Im also curios in how to make a skill cooldown gui after 1 week there is no result bruh hope you can help with that

  • @Naruto59615
    @Naruto59615 Рік тому

    why make a video called "how to make a skill in roblox studio" but then just fast forward a bunch of parts like how to make particles?

  • @StreamerClipz-m7z
    @StreamerClipz-m7z Рік тому

    Ik why the anims didn’t work, your avatar was in r15 model but the anims were made for r6

  • @NotMcChunky
    @NotMcChunky Рік тому +1

    its so confusing when i don’t have a charge animation and stuff

  • @therealsolidfr
    @therealsolidfr Рік тому

    I didnt get a particle and this tutorial didnt work, another 3 hours of my pointless life wasted.

  • @Tensei_IsCool
    @Tensei_IsCool Рік тому +1

    Bro i am new to roblox create and programming till now i have had a great idea and am creating a game more like adventure and exploration and many anime inspired i just needed some help personally.Your Video helped me a lot but i still need some more help

  • @ЕгехалатаТимуркалашника

    I couldnt do anything since you didnt show how to insert that dummy, how to make an animation so I couldnt even start please make one more detailed

  • @sillymonke587
    @sillymonke587 Рік тому

    i know your ip adress dont check your mailbox

  • @blue_gaming9458
    @blue_gaming9458 Рік тому

    it didnt work, I dont know what the problem was I followed the entire tutorial all the way through

  • @kuzoreta
    @kuzoreta 10 місяців тому

    Can u share your scripting editor’s colors and font

  • @kaidennGT
    @kaidennGT Рік тому

    I know this is late but I tried everything and for some reason when I try to use the item it jus goes Away out my inventory sob

  • @edits743rox4
    @edits743rox4 Рік тому

    You said it was ganna be simple😭😭😭😭😭😭😭😭😭😭😭😭😭😭

  • @Dailypotato321
    @Dailypotato321 Рік тому +1

    How can I make this do damage?

  • @doqe
    @doqe Рік тому +2

    tbh this video taught me something i never knew existed (animation events), glad it's supported in moon animator too

    • @Procoder17
      @Procoder17 Місяць тому

      Fr I didn’t know what that was either

  • @makmeladoko5216
    @makmeladoko5216 11 місяців тому

    make tutorial of making a sword with animation with damage,etc

  • @discord_uguzblox
    @discord_uguzblox Рік тому

    can you copy and send me all scripts in scripting i cant read too good i broke my glasses

  • @StylishBanditSlayerS
    @StylishBanditSlayerS Рік тому

    mine not working, the vfx not appear, what wrong

  • @Shinnyjutsu
    @Shinnyjutsu Рік тому

    can u like send the scripts?, ( im to lazy )

  • @mega-god1
    @mega-god1 Рік тому

    bro next time copy/paste the scripts into the des or comments

  • @EnderGaming41245Roblox
    @EnderGaming41245Roblox Рік тому

    Not working! Thumbs down 👎

  • @Grim865
    @Grim865 9 місяців тому

    Guys the like button turns rainbow :o

  • @ICED709
    @ICED709 Рік тому

    Do you just do the same scriptimg as you?

  • @Funnyclips-xx3gi
    @Funnyclips-xx3gi 5 місяців тому

    How do you make it do damage and knock back?

  • @Jxcatty
    @Jxcatty Рік тому

    local db = false
    local dbtime = 5
    local equipped = false
    local animation = script:WaitForChild("Animation")
    script.Parent.Equipped:Connect(function()
    equipped = true
    end)
    script.Parent.Unequipped:Connect(function()
    equipped = false
    end)
    script.Parent.Activated:Connect(function()
    if equipped == true then
    if db == false then
    db = true

    local char = script.Parent.Parent
    local humanoid = char:WaitForChild("Humanoid")
    local charge = script.Parent:WaitForChild("Charge")
    local Fire Balled = script.Parent:WaitForChild("Fire Balled")

    local anim = humanoid:LoadAnimation(animation)
    anim:Play()

    anim:GetMarkerReachedSignal("Charge"):Connect (function(parameter)
    print(parameter)
    charge:FireServer()
    end)
    anim:GetMarkerReachedSignal("Charge"):Connect (function(parameter)
    print(parameter)
    charge:FireServer()
    end)

    wait(dbtime)
    db = false
    end
    end
    end)

    • @Jxcatty
      @Jxcatty Рік тому

      change Fire Balled with whatever you want and thats just script not local script

  • @amgabad
    @amgabad Рік тому

    GetMarkerReachedSignal is not a valid member of Animation "Players.DeCCoraTer.Backpack.explosion.move"
    there is that error

  • @SimplyFozik
    @SimplyFozik Рік тому

    why equip function dont work?

  • @GamingWithTeun
    @GamingWithTeun 8 місяців тому

    Never speed up the particle part again please

  • @thehiddenmoveonfoenem
    @thehiddenmoveonfoenem Рік тому

    how to get the animation on your top screen???

  • @EditedByNaveed
    @EditedByNaveed Рік тому

    local db = false
    local dbtime = 5
    local equipped = false
    local animation = script:WaitForChild("Animation")
    script.Parent.Equipped:Connect(function()
    equipped = true
    end)
    script.Parent.Unequiped:Connect(function()
    equipped = false
    end)
    script.Parent.Acrivated:Connect(function()
    if equipped == true then
    if db == false then
    db = true

    local char = script.Parent.Parent
    local humanoid = char:WaitForChild("Humanoid")
    local charge = script.Parent.WaitForChild("Charge")
    local FireGun = scirpt.Parent:WaitForChild("FireGun")

    local anim = humanoid:LoadAnimation(animation)
    anim:PLay()

    anim:GetMarkerReachedSignal("Charge") :Connect(function(parameter)
    print(parameter)
    charge:FireServer()
    end)

    anim:GetMarkerReachedSignal("FireGun") :Connect(function(parameter)
    print(parameter)
    FireGun:FireServer()
    end)

    wait(dbtime)
    db = false
    end
    end
    end)
    (Local Script)

  • @skygemstone2259
    @skygemstone2259 Рік тому

    What if I don’t want particled

  • @kast830
    @kast830 10 місяців тому

    who have full script😢?

  • @mechkabg_dio2326
    @mechkabg_dio2326 Рік тому +2

    that will work for my game but can you show something like when its pressed Z or something the skill triggers ?thanks for the tutorial

    • @SnakesRobbs
      @SnakesRobbs  Рік тому

      Hi i sorted this out with someone somewhere in the comment section, you can find it and follow along!

  • @insertusernamehere8125
    @insertusernamehere8125 Рік тому +1

    Bingus particle pack all the way!

  • @prestonlapoint3424
    @prestonlapoint3424 Рік тому

    i want to make a game but im too lazy :/

  • @robloxgameplay1512
    @robloxgameplay1512 Рік тому

    I don’t know how to make a good animation

  • @leizelxoxg9199
    @leizelxoxg9199 2 місяці тому

    How do i make it deal damage?

  • @AiCrapPosts10443
    @AiCrapPosts10443 Рік тому

    1:21 just a mark from where I left

  • @spedrbx
    @spedrbx Рік тому

    can u send me the vfx template u used

  • @Sir-kr7ji
    @Sir-kr7ji Рік тому

    What if I did not do charge?

  • @azmi978
    @azmi978 Рік тому +1

    Im sorry i need to copy all what you doing i just want to make war ability game

  • @elmon8294
    @elmon8294 Рік тому

    bro really said its simple 💀

  • @Or.mp4
    @Or.mp4 Рік тому

    4:53 leaveing my self time stamp

  • @case3oh123
    @case3oh123 Рік тому

    can you pls type it in the chat

  • @ARobloxDev
    @ARobloxDev Рік тому

    YEEEEEEEEEEEEEES
    MY STARTER ANIMATION TOOL IS FIXED YEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEESSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS

  • @vinsovan9707
    @vinsovan9707 Рік тому +1

    How would I make the particle emission instantaneous? Because right now my particles have a delay before they spawn.

  • @bizzystudios6600
    @bizzystudios6600 3 місяці тому

    One large problem is eveytime you go to make a particle you just skip past the entire process which in a tutorial u need to be explaining how to do each part not skipping past it…

  • @dylikuma2916
    @dylikuma2916 Рік тому +1

    Make a tutorial for the charge effect pls, how are the particles reversed?

    • @Zxnn-ok1ut
      @Zxnn-ok1ut 9 місяців тому

      I hope this helped but there’s a inward option to make it look like it

  • @aqeefizzudin1062
    @aqeefizzudin1062 Рік тому

    mine kinda doesnt work. Was this the right script?
    _____________________________________________________
    local db = false
    local dbtime = 1
    local equiped = false
    local animation = script:WaitForChild("Animation")
    script.Parent.Equipped:Connect(function()
    equiped = true
    end)
    script.Parent.Unequipped:Connect(function()
    equiped = false
    end)
    script.Parent.Activated:Connect(function()
    if equiped == true then
    if db == false then
    db = true

    local char = script.Parent.Parent
    local humanoid = char:WaitForChild("Humanoid")
    local dash = script.Parent:WaitForChild("Dash")

    local anim = humanoid:Loadanimation(animation)
    animation:Play()

    anim:GetMarkerReachedSignal("Dash"):Connect(function(parameter)
    print(parameter)
    dash:FireServer()

    end)

    wait(dbtime)
    db = false
    end
    end
    end)

    • @FrozenPrimordial
      @FrozenPrimordial Рік тому +1

      you put "local anim = humanoid:Loadanimation(animation)" needs to be "LoadAnimation", with the capital 'a'

    • @aqeefizzudin1062
      @aqeefizzudin1062 Рік тому +1

      @@FrozenPrimordial ok thanks!

  • @manimations9219
    @manimations9219 Рік тому

    What programming languages you used for thise?

    • @apiemonthebear
      @apiemonthebear 7 місяців тому +1

      Roblox Studio uses "Lua" as programming language.

  • @onlyicedragon7791
    @onlyicedragon7791 Рік тому

    I’ve copied everything from the video but it didn’t work. I click with “explosion” and nothing happens. Help me, please! 🙏🙏🙏

  • @Ksvaliss
    @Ksvaliss Рік тому

    where is the animating thing..

  • @satyrosima
    @satyrosima Рік тому

    Yeah it doesn’t work, I followed the script perfectly, nothing wrong said in output and yet it would not work, if it gets to work for you you either did this before an update or your lucky, but from what I can tell it doesn’t work :(

  • @astr0onroblx
    @astr0onroblx Рік тому

    bro plss its not working bro when i click nothing happens i have require handle turned of too and nothing happend and i dont wanna unsubscribe and leave a dislike

  • @FloppaHeckerYT
    @FloppaHeckerYT Рік тому

    but its doenst give a damage

  • @ItsDreg
    @ItsDreg Рік тому

    Idk why but the particles and animation won't show even tho i did everything in the tutorial correctly?, can someone help ;-;

  • @renato81476
    @renato81476 Рік тому

    bro i cant see on is part 3:51

  • @lolszs
    @lolszs Рік тому +3

    how do u set this to a keybind instead love the vid btw

    • @SnakesRobbs
      @SnakesRobbs  Рік тому

      you could use userinputservice, ill link a pastebin with the script

    • @SnakesRobbs
      @SnakesRobbs  Рік тому

      Here you go!
      pastebin.com/i9LMF3vP

    • @DarkClapzHD
      @DarkClapzHD Рік тому +1

      @@SnakesRobbs do I delete what I had before or delete 18 and back and paste ot

    • @SnakesRobbs
      @SnakesRobbs  Рік тому

      @@DarkClapzHDpaste everything after the debounce into the new script on line 11

    • @DarkClapzHD
      @DarkClapzHD Рік тому

      @@SnakesRobbs ok also do I have to use a particle emitter

  • @ZenithZz-Z
    @ZenithZz-Z Рік тому +1

    "its actually more simple than you think"

  • @yusuff5513
    @yusuff5513 Рік тому

    hey does this do damage??

  • @angelsgreg6732
    @angelsgreg6732 Рік тому +1

    hey! good tutorial id say but after i completed everything i joined the game and nothing worked that i scripted. the tool was there just nothing happened when i clicked it

  • @justakidkeepingapromise
    @justakidkeepingapromise Рік тому

    this 4k quality fr fr

  • @SergeantNooob
    @SergeantNooob Рік тому +1

    making an r6 anim and realising my game is set to r15 seems like something I would do

  • @isaacsammy8088
    @isaacsammy8088 Рік тому

    I know this video is kinda old, but I tried this and it didn’t work for me. I really need your help! I don’t know what part I did wrong

  • @kellychen4907
    @kellychen4907 Рік тому

    Can I hire u on rblx

  • @Qwadra481
    @Qwadra481 Рік тому +1

    Ok, but how do I make it deal actual damage

    • @SnakesRobbs
      @SnakesRobbs  Рік тому +1

      watch the updated version!

    • @Qwadra481
      @Qwadra481 Рік тому +1

      @@SnakesRobbs thanks! Btw, you got any tips on learning how to script properly? All the ones I make are like 99% reliant on tutorials so I’d like some advice.

  • @aijalonbest5625
    @aijalonbest5625 Рік тому

    it was the rig type...

  • @kerimbedirhansan4415
    @kerimbedirhansan4415 10 місяців тому

    Warden ulti :D

  • @reallifevibe
    @reallifevibe Рік тому

    how to make it stun?

  • @nikolangot
    @nikolangot Рік тому

    this tut aint working

  • @TheAbyssalBasin
    @TheAbyssalBasin Рік тому

    Never scripted before and my brain hurts, Thanksfor the vid tho

  • @ItsJugo
    @ItsJugo Рік тому

    tell me how script

  • @Realseee
    @Realseee Рік тому +1

    W

  • @versec4k
    @versec4k Рік тому

    whats the plugin