How to Make BLOX FRUITS In ROBLOX STUDIO 2024 | Part 1

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

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

  • @polarisprog
    @polarisprog  11 месяцев назад +9

    Get all of my project files on my patreon:
    bit.ly/3SOBP6J
    JOIN THE DISCORD!
    discord.gg/cztJHYSfVE
    Particle model:
    bit.ly/3STKxDt
    Camera shaker:
    bit.ly/3OCYO4U

    • @Mini-Tech748
      @Mini-Tech748 11 месяцев назад

      yo, i made an edit of you: ruclips.net/user/shortsqPffxqDL_8c

    • @FelixYT4321
      @FelixYT4321 8 месяцев назад +1

      I can't submit the 'test' animation, and i'm 18+ so whats the problem?

    • @PainImpaled
      @PainImpaled 7 месяцев назад

      i have a problem where when i equip the combat the animation doesn't play:( does anyone know why?

    • @duckyyyblox
      @duckyyyblox 7 месяцев назад

      @@PainImpaled it might be something in the script, if you double check there might be a lowercase letter that was supposed to be a capital or a missing line, other option is, you could press play click on view at the top, click output and it'll tell you what is incorrect

    • @PainImpaled
      @PainImpaled 7 месяцев назад

      @@duckyyyblox oh thx it worked but does the texture have to be animated (HitParticle)*

  • @ChikmenComments
    @ChikmenComments 11 месяцев назад +23

    Ideas for next parts:
    Part 2: Combo strings, AKA doing right hand punches and then changing to left hand after one punch, also adding dashes and multiple jumps
    Part 3: Combat abilities
    Part 4: Fruits and abilities for them
    Part 5: Swords and enemy npcs
    Part 6: Storage system and combat fighting styles
    Part 7: Trading system
    Part 8: Bosses
    Part 9: Awakening and transformation ability (for zoan fruits)
    Part 10: Something to add of your own, ( something unique that isn’t similar to blox fruits and you want to add it yourself)

    • @rexplay_z
      @rexplay_z 7 месяцев назад

      It wont be as easy as you think.
      If there are non developers, it would take them hours to even understand the code and make modifications.😢

    • @mr.bingus69
      @mr.bingus69 7 месяцев назад +2

      That is so hard, you forgot the health system

    • @rexplay_z
      @rexplay_z 7 месяцев назад

      @@mr.bingus69 lol, even i didnt see it

    • @I_pvn
      @I_pvn 3 месяца назад

      no

    • @TheRealFluxx69
      @TheRealFluxx69 3 месяца назад

      The awakening and transformation for zoan fruits well thats COPYRIGHTED BY ONE PIECE AND THIS GAME WILL BE BANNED

  • @mrg212
    @mrg212 11 месяцев назад +6

    Thats a W! I'm guessing the next part is going to be about adding player stat variables that increase the damage depending on stat value?

  • @TheWayManREAL
    @TheWayManREAL 11 месяцев назад +4

    Some advice since a lot of people are coding this way now:
    type if character == nil then return end
    It makes your code so much cleaner and it is great practice. Also spaces between that it just helps read the code a lot easier for people new to scripting.

    • @leon3758
      @leon3758 11 месяцев назад

      When I did that it disabled my punching damage:p

  • @gamestogether3852
    @gamestogether3852 3 месяца назад +2

    Guys when you make your punch hold animation make sure to only use the first keyframe(at 00:00) otherwise it will not stay at the animation you want and will reset back to the default animation

  • @MrBobs-p1v
    @MrBobs-p1v 5 дней назад +1

    What is the dot after the first local?

  • @e_zrr
    @e_zrr 11 месяцев назад +4

    Ty pls you can continue series

  • @Phirrrrre
    @Phirrrrre 6 месяцев назад +3

    Love the videos hope you keep posting. Never stop.

  • @trophyist
    @trophyist 4 месяца назад +1

    "this series will be finished dont worry about not seeing part 2 ever again"
    proceeds to stop at episode 5

  • @syphrd
    @syphrd 10 дней назад

    It worked perfectly! Thanks so much!

  • @countingblicks6391
    @countingblicks6391 11 месяцев назад +2

    LETS GOOOO!!!🔥🔥🔥

  • @ClaimTheMoons
    @ClaimTheMoons 4 месяца назад +15

    𝗦𝗲𝗿𝘃𝗲𝗿𝗦𝗰𝗿𝗶𝗽𝘁𝗦𝗲𝗿𝘃𝗶𝗰𝗲:
    game.ReplicatedStorage.Remotes.Punch.OnServerEvent:Connect(function(player, damage)
    local character = player.Character
    if character == nil then
    return
    end
    local humanoid = character:FindFirstChild("Humanoid")
    if humanoid == nil then
    return
    end
    if humanoid.Health == 0 then
    return
    end
    local boxCFrame = character.HumanoidRootPart.CFrame
    local boxSize = Vector3.new(5, 5, 5)
    local params = OverlapParams.new()
    params.CollisionGroup = "Default"
    params.FilterDescendantsInstances = {character}
    params.FilterType = Enum.RaycastFilterType.Exclude
    params.MaxParts = 50
    local objectsInHitbox = workspace:GetPartBoundsInBox(boxCFrame, boxSize, params)
    task.wait(0.1)
    for _, v in objectsInHitbox do
    local otherhumanoid = v.Parent:FindFirstChild("Humanoid")
    if otherhumanoid == nil then
    continue
    end
    if otherhumanoid.Health == 0 then
    return
    end
    local hitParticle = script.HitParticle:Clone()
    hitParticle.Parent = v.Parent.HumanoidRootPart
    hitParticle:Emit(10)
    otherhumanoid.Health -= damage
    task.delay(3, function()
    if hitParticle == nil then
    return
    end
    if hitParticle.Parent == nil then
    return
    end
    hitParticle:Destroy()
    end)
    break
    end
    end)
    𝗦𝘁𝗮𝗿𝘁𝗲𝗿𝗣𝗮𝗰𝗸:
    local replicatedStorage = game:GetService("ReplicatedStorage")
    local players = game:GetService("Players")
    local player = players.LocalPlayer
    local tool = script.Parent
    local camera = workspace.CurrentCamera
    local remotes = replicatedStorage:WaitForChild("Remotes")
    local cameraShaker = require(replicatedStorage:WaitForChild("CameraShaker"))
    local punchHoldAnimation = nil
    local punchClickAnimation = nil
    local debounce = false
    local equipped = false
    local camShake = cameraShaker.new(Enum.RenderPriority.Camera.Value, function(shakeCF)
    camera.CFrame = camera.CFrame * shakeCF
    end)
    tool.Equipped:Connect(function()
    local character = player.character
    if character == nil then
    return
    end
    equipped = true
    local humanoid = character:FindFirstChild("Humanoid")
    if humanoid == nil then
    return
    end
    local animator = humanoid:FindFirstChild("Animator")
    if animator == nil then
    return
    end
    punchHoldAnimation = animator:LoadAnimation(tool.Animations.PunchHold)
    punchHoldAnimation:Play()
    end)
    tool.Unequipped:Connect(function()
    equipped = false
    if punchHoldAnimation == nil then
    return
    end
    punchHoldAnimation:Stop()
    end)
    tool.Activated:Connect(function()
    if debounce then
    return
    end
    local character = player.Character
    if character == nil then
    return
    end
    if punchHoldAnimation ~= nil then
    punchHoldAnimation:Stop()
    end
    debounce = true
    local humanoid = character:FindFirstChild("Humanoid")
    if humanoid == nil then
    return
    end
    local animator = humanoid:FindFirstChild("Animator")
    if animator == nil then
    return
    end
    punchClickAnimation = animator:LoadAnimation(tool.Animations.PunchClick)
    punchClickAnimation:Play()
    camShake:Shake(cameraShaker.Presets.Bump)
    remotes.Punch:FireServer(25)
    punchClickAnimation.Stopped:Connect(function()
    if punchHoldAnimation ~= nil and equipped then
    punchHoldAnimation:Play()
    end
    debounce = false
    end)
    end)

    • @247BCA
      @247BCA 2 месяца назад

      W

    • @lukacyrilkolos195
      @lukacyrilkolos195 Месяц назад

      Thanks a lot

    • @StrawHatLuffy-4
      @StrawHatLuffy-4 Месяц назад

      you are the best I really didnt want to endlessly type down all of that!

    • @hollow_cs
      @hollow_cs 14 дней назад

      Arigatô

    • @GappayPlayzz
      @GappayPlayzz 10 дней назад

      Bro thanks so much!! I would of been inside a grave typing all of that

  • @TechTannock
    @TechTannock 11 месяцев назад +2

    IT WORKS THANK YOU SOOOOOOOOOO MUCH 😁

  • @Aelitho
    @Aelitho 11 месяцев назад +1

    THANK YOU BRO 🙏

    • @Ovalpetter
      @Ovalpetter 11 месяцев назад

      heyy

    • @Aelitho
      @Aelitho 11 месяцев назад

      @@Ovalpetteryo

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

    PLEASE I NEED THIS SO MUCH MAKE A NEW EPISODE THIS IS ABSOLUTELTY NEW SUB U THE BEST

  • @ItsmeKotokonamayangerIssue
    @ItsmeKotokonamayangerIssue 11 месяцев назад +1

    Please finish this i love it

  • @MrBobs-p1v
    @MrBobs-p1v 5 дней назад

    When I play it and go on my combat it doesn't work no animations when I click. no starter animation any suggestions????

  • @kakashi4real189
    @kakashi4real189 8 дней назад

    At 4:10 what are the dot things between local and replicatedStorage

    • @Arcanebs
      @Arcanebs 6 дней назад

      That guy's only way of seeing, if you don't have those spots, he edited it with normal settings(it doesn't change anything)

    • @kakashi4real189
      @kakashi4real189 5 дней назад

      @@Arcanebs thanks

  • @Anime.4ev3r
    @Anime.4ev3r 7 дней назад

    1:49 how do i get the menu in the bottom right corner?

    • @Arcanebs
      @Arcanebs 6 дней назад

      Go to view at the top right and open propeties from there.

  • @fighter_908
    @fighter_908 10 месяцев назад +2

    don't understand why when I launch the game my character does the animation but not the damage and the particle. I wrote the two scripts and I checked if there were any problems but I didn't find any.

  • @ExoticDevOfficial
    @ExoticDevOfficial 11 месяцев назад +1

    Hey Polar! Just a quick question, will you ever finish the FPS Series 2024?

    • @polarisprog
      @polarisprog  11 месяцев назад

      Yes!

    • @ExoticDevOfficial
      @ExoticDevOfficial 11 месяцев назад +2

      @@polarisprog Tysm! I really was hoping you'd finish it.

  • @fortnite4ever7
    @fortnite4ever7 4 месяца назад

    yooo thanks for the tut

  • @Tooobleszo
    @Tooobleszo 9 месяцев назад +1

    Why can’t I swing or change animation when I press combat

  • @axolotl_yt55
    @axolotl_yt55 5 месяцев назад +1

    What is that tiny circle part?
    Mine sadly doesn't really work..

    • @ma8687
      @ma8687 2 месяца назад

      it's not a tiny circle part it's space

  • @Random_guy1826
    @Random_guy1826 11 месяцев назад

    This is good for my other futurd games ngl

  • @Theybinarycoders
    @Theybinarycoders 5 месяцев назад

    I have a question whenever I try doing scripts not just yours any ones they don't work!

  • @HawaiianAEP
    @HawaiianAEP 3 месяца назад

    When I first get into the game at 12:35, it lets me punch once then I can’t after that? What’s wrong

  • @Romodelplay
    @Romodelplay 7 месяцев назад +1

    can you help make my game also i cant see sumbit button o asset configuration

  • @Bry4n1_rey
    @Bry4n1_rey Месяц назад +1

    What name game

  • @GOJOメROBLOX
    @GOJOメROBLOX 5 дней назад +1

    Lol I got uncopylocked bloxfruit

  • @LukeGamerzlol7118
    @LukeGamerzlol7118 7 месяцев назад +1

    hi can you copy and paste the script in the description so its easier?

  • @Drock_11
    @Drock_11 5 месяцев назад +1

    The punch hold animation didn’t work even though I did exactly everything right

  • @VioletteRoblox276
    @VioletteRoblox276 2 месяца назад

    NOTE: Make sure you have the Output open [If you don't know how to open it, go to the View tab at top of your Roblox Studio and find Output]

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

    hey polar! the script is great, but blox fruits jas some sense-catching things that would enhance the script, like sound effects play only if the humanoid is touched, and like stat values, where the first values 1-40 could be low 40-100 semi low, and 100-300 is medium, and 1000+ is great?, maybe u could do these one day, also if this seems like too much, you can always just shorten the list or make a better idea, thanks!

  • @HawaiianAEP
    @HawaiianAEP 3 месяца назад

    Whenever I finish the script at 7:00 and load into the game, when I equip “combat” nothing happens

    • @BluelimehuY2013iscool
      @BluelimehuY2013iscool 3 месяца назад

      me too

    • @HawaiianAEP
      @HawaiianAEP 3 месяца назад

      @@BluelimehuY2013iscool I just fixed it, for me it was that I missed a letter

    • @247BCA
      @247BCA 2 месяца назад

      @@HawaiianAEP Do you know what it was?

  • @froggyplays6924
    @froggyplays6924 11 месяцев назад

    This is very good. Can you make the part two sson pls

  • @Mogcraft-u4t
    @Mogcraft-u4t 11 месяцев назад +8

    When is part 2

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

      Part two is out

    • @Oaklyplays
      @Oaklyplays 5 месяцев назад

      ruclips.net/video/5Gf1XFrDE2M/видео.htmlsi=C1aDCOrPURDFUhqp

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

    How do you get Punch and HoldPunch?

  • @crazyjack6518
    @crazyjack6518 7 месяцев назад

    How do you switch the ids at 6:41 I don’t know

    • @t.wadler
      @t.wadler 6 месяцев назад

      That doesn't matter, he was just setting up different animations that he made the day before. It does not apply to you.

  • @benita-l9x
    @benita-l9x 4 месяца назад

    how do you put the id from before?

  • @Peanuts6969
    @Peanuts6969 18 дней назад

    Great work but i need help so can you like copy and paste the scripts because it wont work for me

  • @Rio-gg78
    @Rio-gg78 11 месяцев назад

    I LOVE YOU!!!

  • @FlimyGamer
    @FlimyGamer 11 месяцев назад

    Hey Polarisprog uh idk if u know but in blox fruits u can get different fighting styles and with them they are effects on ur fists so I was wondering next part u can try to make them

    • @devondoesart7870
      @devondoesart7870 7 месяцев назад

      I'm as new as it comes to coding in lua but im assuming you could probably just find a flame effect for example in the toolbox and add it to the fists of the humanoid if the "combat" tool is equipped

  • @hayhay_3421
    @hayhay_3421 11 месяцев назад

    Can you make a video on how to make a data store for multiple leader stats

  • @D4rius.
    @D4rius. 11 месяцев назад

    Can you teach me how to make the blox fruits inventory system?

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

    i cant figure out why but when i punch the dummy everything works fine except i take damage instead of the dummy, how do i fix that?

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

    Mine was saying render debugging howm do i fix that

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

    at 1:32 i dont see a submit button... its not on my screen

  • @BluelimehuY2013iscool
    @BluelimehuY2013iscool 3 месяца назад

    5:26 HOW DID YOU TYPE THE ARROW?!?!?!?

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

    why isnt it doing any damage when I hit the dummys(rigs) i need helppppp

  • @PorumbCuSare-ex5qt
    @PorumbCuSare-ex5qt День назад

    bro when i equipped the combat it works but when i clicked nothing happend XD

  • @gemato1257
    @gemato1257 11 месяцев назад

    In the output stands my animation isnt loading but only my punch animation my hold animation works idk what to do now

    • @haloplayss
      @haloplayss 11 месяцев назад

      your animation is too long

  • @SigmaEditz-t1o
    @SigmaEditz-t1o 4 месяца назад

    I realised why the animation for punch hold didn't come up lol, it was because there was no animator controller and animator under humaniod. which meant that the whole code just didn't run. Hope i helped Xd

    • @NitishBorse
      @NitishBorse 2 месяца назад

      what is the code for animator controller and animator and where do I have to put it?

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

    I don’t have the submit button 1:40

  • @karamsoorsingh7806
    @karamsoorsingh7806 5 месяцев назад

    6:42 Can someone tell me what he means by that pls

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

    I can't submit the 'test' animation, and i'm 18+ so whats the problem?

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

    Mine is disabled? How do I undisable it?

  • @XenoTrey_productoins
    @XenoTrey_productoins 7 месяцев назад

    Yo can u make a level up system

  • @SmorezCx
    @SmorezCx 11 месяцев назад

    second omggggg so cool!111!

  • @lorenanegoita8860
    @lorenanegoita8860 5 месяцев назад

    Bro can you tell we how to make the dummys to attack you?

  • @johnbreechvillaverde7189
    @johnbreechvillaverde7189 11 месяцев назад

    can you make a skill wherein you can hold the skill and shoot it like kizaru light beam

  • @vale97hacker24
    @vale97hacker24 7 месяцев назад

    the animations i made dont work after trying it

  • @Zacky_off
    @Zacky_off 2 месяца назад

    I have a question, in your scripts you put a symbol that looks like a point, example: replicatedstorage·=·game..... is the (·) a central point or another sign? because on my screen it looks like a point :V

  • @Tjkrunch
    @Tjkrunch 9 месяцев назад

    can someone help me why is my legs not moving in the walking animation

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

    Does it still work

  • @cyberslicer2851
    @cyberslicer2851 7 месяцев назад

    what are the dot lookin things in between words?

  • @Henblox120
    @Henblox120 7 месяцев назад

    Idk if I’m the only one but when I try the game and I equip the combat it doesn’t do ur type of animation can u pls explain how to fix the bug pls❤, btw cool vid

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

      put the following line of code before you play it: punchHoldAnimation.Priority = Enum.AnimationPriority.Action

  • @supercooldum8729
    @supercooldum8729 11 месяцев назад

    im having problems switching modes in the roblox animator. any suggestions? it just exits the roblox animator whenever i switch.

  • @Hdeigwshiefig
    @Hdeigwshiefig 6 месяцев назад +1

    It didn’t work for me and I followed the steps

  • @flesflie
    @flesflie 9 месяцев назад

    How to get on the arrow on the npc

  • @muriloo1223
    @muriloo1223 Месяц назад

    You guys can do walk animations too :/ ig

  • @MrHalal-n3z
    @MrHalal-n3z 11 месяцев назад

    I have an bug, when i equiped my tool it dont show up 7:02

    • @Safashifin
      @Safashifin 9 месяцев назад

      make sure that your PunchClient script has Combat as its Parent in the properties
      -know im a little late hopefully this might help others with this

  • @ΚΑΤΕΡΙΝΑΧΑΡΠΙΔΟΥ
    @ΚΑΤΕΡΙΝΑΧΑΡΠΙΔΟΥ 6 месяцев назад

    idk if im bad at coding but u have put a lot of symbols that sombody (like me) dont know how to put so pls make your videos-turtorials more understanting to help more

  • @EndyFloew-ky5lq
    @EndyFloew-ky5lq 7 месяцев назад +1

    Why all of its not working

  • @Aluparda
    @Aluparda 2 месяца назад +4

    Bruh why i am soo bad at writing scripts i always do something wrong and nothing works
    😭😭il love if i get some more help with scripts

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

    Yoo banker video!!!

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

    hello!
    If i deequip the combat, I can equip it, but it will not show the animation and if i click it will not do any damage

  • @exitopbr8904
    @exitopbr8904 6 месяцев назад +4

    local replicatedStorage = game:GetService("ReplicatedStorage")
    local players = game:GetService("Players")
    local player = players.LocalPlayers
    local tool = script.Parent
    local camera = workspace.CurrentCamera
    local remotes = replicatedStorage:WaitForChild("Remotes")
    local cameraShaker = require(replicatedStorge:WaitForChild("CameraShaker")
    local punchHoldAnimation = nil
    local punchAnimation = nil
    local debounce = false
    local equipped = false
    local camSHake = cameraShaker.new(Enum.RenderPriority.CameraValue, function(shakeCf)
    camera.Cframe = camera.CFrame * shakeCf
    end)
    tool.Equipped:Connect(function()
    local character = player.Character
    if character == nil then
    return
    end
    equipped = true
    local humanoid = character:FindFirstChild("Humanoid")
    if humanoid == nil then
    return
    end
    local animator = humanoid:FindFirstChild("Animator")
    if animator == nil then
    return
    end
    punchHoldAnimation = animator:LoadAnimation(tool.Animations.PunchHold)
    punchHoldAnimation:Play()
    end)
    tool.Unequipped:Connect(function()
    equipped = false
    if punchHoldAnimation == nil then
    return
    end
    punchHoldAnimation:Stop()
    end)
    tool.Activated:Connect(function()
    if debounce then
    return
    end
    local character = player.Character
    if character == nil then
    return
    end
    if punchHoldAnimation ~= nil then
    punchHoldAnimation:stop()
    end
    debounce = true
    local humanoid = character:FindFirstChild("Humanoid")
    if humanoid == nil then
    return
    end
    local animator = humanoid:FindFirstChild("Animator")
    if animator == nil then
    return
    end

    punchClickAnimation = animator:LoadAnimation(tool.Animations.PunchClick)
    punchClickAnimation:Play()
    camShake:Shake(cameraShaker.Presets.Bump)
    remotes.Punch:FireServer()

    punchClickAnimation.Stopped:Connect(function()
    if punchHoldAnimation ~= nil and equipped then
    punchHoldAnimation:Play()
    end
    debounce = false
    end)
    end)

  • @PainImpaled
    @PainImpaled 7 месяцев назад +1

    i have a problem where when i equip the combat the animation doesn't play:( does anyone know why?
    👇

    • @Pavo59
      @Pavo59 4 месяца назад

      Same here

    • @T0P.T1ER
      @T0P.T1ER 4 месяца назад

      @@Pavo59 same here

    • @Pavo59
      @Pavo59 4 месяца назад

      @@T0P.T1ER but I thibk it might be the version or some settings idk cuz when he does "==" they turn into 1 big One but on my screen they don't. And some words don't get the same Color as his

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

    What dose he mean the animation he made yesterday

  • @JoelAstecado
    @JoelAstecado 5 месяцев назад

    bro my animation don´t make the movement

  • @ELMENYAWETHEKING
    @ELMENYAWETHEKING 2 месяца назад

    hey guys i dont know why all animation dont work with me
    im make the animation and the scrpit but when i use compat it not animation please anyone tell me why

  • @ItsVili_cool2
    @ItsVili_cool2 11 месяцев назад +1

    polarisprog i won't work can you please help me

    • @ChikmenComments
      @ChikmenComments 11 месяцев назад

      Send script and tell me the error

    • @ItsVili_cool2
      @ItsVili_cool2 11 месяцев назад

      @@ChikmenComments local replicatedStorage = game:GetService("ReplicatedStorage")
      local players = game:GetService("Players")
      local player = players.LocalPlayer
      local tool = script.Parent
      local camera = workspace.CurrentCamera
      local remotes = replicatedStorage:WaitForChild("Remotes")
      local punchHoldAnimation = nil
      local punchClickAnimation = nil
      local debounce = false
      local equipped = false
      tool.Equipped:Connect(function()
      local character = player.Character
      if character == nil then
      return
      end
      equipped = true
      local humanoid = character:FindFirstChild("Humanoid")
      if humanoid == nil then
      return
      end
      local animator = humanoid:FindFirstChild("Animator")
      if animator == nil then
      return
      end
      punchHoldAnimation = animator:LoadAnimation(tool.Animations.PunchHold)
      punchHoldAnimation:Play()
      end)
      tool.Unequipped:Connect(function()
      end)
      The problem is it won't equip

  • @epiccer
    @epiccer 11 месяцев назад

    Nice! can u make a pls donate version of the series pls

  • @Baiazid22
    @Baiazid22 5 месяцев назад

    why u don't explain the scripts ? people here wanna learn how to script not copy paste

  • @MugiwaraDrawing
    @MugiwaraDrawing 3 месяца назад

    howis he doing that 4:11

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

    everything is working fine its just that when I play the punch animation my character is sent slightly backwards. can someone please help?

    • @yoitzjustnightbot6721
      @yoitzjustnightbot6721 5 месяцев назад

      16:54 Seems like youre missing this step. ik this was a long time ago but that should fix the issue.

  • @Raver-33
    @Raver-33 6 месяцев назад

    Como se hace el sistema aleatorio de razas?

  • @tommylamb9815
    @tommylamb9815 3 месяца назад

    why it doesnt work for me :(

  • @louroblox-W
    @louroblox-W 5 месяцев назад

    doesn't work
    why?

  • @FatouSow-x9h
    @FatouSow-x9h 2 месяца назад

    0:33 for first step 😊

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

    the animations arent playing

  • @Ray_migh
    @Ray_migh 9 месяцев назад

    wowww can u make an r6 version i tryna make one for my game but idk how to script :(

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

    A tip for all my fellow scripters: do not animate the lower torso or upper!, this will make it so that when you walk it looks weird

  • @cyberslicer2851
    @cyberslicer2851 7 месяцев назад

    im stuck on the script part? can someone send me the stuff so i can copy and paste it?

  • @Morenplayfisch
    @Morenplayfisch 9 дней назад

    everything doesnt work pls help

  • @LynaLuong-zn6rt
    @LynaLuong-zn6rt 7 месяцев назад

    pls modle animation ís error

  • @haloplayss
    @haloplayss 11 месяцев назад +2

    when's part 2?

    • @SavStudios
      @SavStudios 11 месяцев назад +1

      never finishes the series bud

    • @haloplayss
      @haloplayss 11 месяцев назад

      @@SavStudios true

    • @ChikmenComments
      @ChikmenComments 11 месяцев назад

      @@SavStudioshe said in the beginning of the video that this will be a completed series

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

    I need a clicker simulator that updates every month and another one wich is big update that updadates every 5month and another update wich is huge update that updates every year plsssssssssssssssssssssssssssssss can you do it?

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

    what is the code