not too sure what the first move is, fire fist looks like the end of sonic's ult, flame blitz looks like the start of sonic's ult, spectre looks like siuryu's third move, the ultimate looks like siuryu's spawn animation, thunder kick looks normal but with suiryu's third move at the end, speedblitz dropkick looks like suiryu's vanishing kick, flamewave cannon looks like tatsumaki's second move, and incinerate looks like that one emote (i forgot the name). This is pretty cool, the use of the different animations are nice.
bro you just change the looks and made it look like other move in tsb also blitz shot is just sonic ult your not a scripter also the ult is just a emote that does not match with the ult can it have different effects and animations?
Is the same movesets dude with different moves Nothing changes ! And like why you scripting i need a answer dude why people scripting l (No harm im just trying to speak fact's you can roast me)
It's basically just modifying the look not the movesets as he said and to respond to your question it's just for fun they don't really exploit its just differents animations but to recognize someone that is really exploiting he will tp fly or just do some unbalanced stuffs.
Bannable guys dont use this you guys maybe wondering “why is this bannable?” It bcz you have advantages after using jet dive you can use blitz shot (which is unpunishable and do alot of damage if fully charged and hit).So dont use it
You probably never played the game,using blitz shot after jet dive is not bannable and its part of the game,since you literally Hover if you use blitz shot mid air
@@calvinlonga5370as if flying high would help in a fight, you wont even be able to combo easily with the jet dive only run, and running wont help in a fight too
@@calvinlonga5370 flying too high ain't doing much, you'll eventually fall. Also there's no advantage since you can only use blitz shot one time and boom cool down (don't even think about using the 2nd move)
you do get fucking banned for purely cosmetic animations because the moderation thinks its valid to ban for purely animations, and you get banned FOREVER
@@DefinitelyZunji > blitz shot is extremely slow(even if it was forced just for the animation of it you'll still have trouble aiming) > if your flame blitz is still on cool down, then when your "spectre" doesn't land on the opponent it makes you open to any attacks for a whole half a second > "fire fist" is completely inconsistent > and pitifully, flaming fist is the only effective move here which is basically just the same as the original.
Bace moveset
pastefy.app/v2nIIjRS
Ultimate moveset
pastefy.app/XTBR7ve2
Uhh what is this for and how do i use it?
Get an executor at google,get the key for the executor and paste it in the executor box@@freshbox2
@@BananaPeelfor-eating thanks for the script brooo
It's not working
😊
@@BananaPeelfor-eatingcan u change the voice
not too sure what the first move is, fire fist looks like the end of sonic's ult, flame blitz looks like the start of sonic's ult, spectre looks like siuryu's third move, the ultimate looks like siuryu's spawn animation, thunder kick looks normal but with suiryu's third move at the end, speedblitz dropkick looks like suiryu's vanishing kick, flamewave cannon looks like tatsumaki's second move, and incinerate looks like that one emote (i forgot the name).
This is pretty cool, the use of the different animations are nice.
first move is the first half suiryus barrage
@@GobbDeppyAndVillino, it looks more like suiryus wal combo
The emote is called sharp shooter
oh cool 👍
It's suiryus wall combo
If yall want the script all together and not splitted.
I made the script again
-- Function to handle animation detection and replacement
local function handleAnimationDetection(animIdsToStop, replacementAnimId, animSpeed)
local player = game.Players.LocalPlayer
local character = player.Character or player.CharacterAdded:Wait()
local humanoid = character:WaitForChild("Humanoid")
local function onAnimPlayed(animationTrack)
local animId = tonumber(string.match(animationTrack.Animation.AnimationId, "%d+"))
for _, stopId in ipairs(animIdsToStop) do
if animId == stopId then
animationTrack:Stop()
local replacementAnimation = Instance.new("Animation")
replacementAnimation.AnimationId = "rbxassetid://" .. replacementAnimId
local replacementTrack = humanoid:LoadAnimation(replacementAnimation)
replacementTrack:Play()
replacementTrack:AdjustSpeed(animSpeed) -- Adjust the speed of the replacement animation
break
end
end
end
humanoid.AnimationPlayed:Connect(onAnimPlayed)
end
-- Animation Sets
local animationSets = {
{animIdsToStop = {13047366862}, replacementAnimId = 17857788598, animSpeed = 1},
{animIdsToStop = {12832505612}, replacementAnimId = 17838006839, animSpeed = 0.5},
{animIdsToStop = {13083332742}, replacementAnimId = 16515850153, animSpeed = 0.8},
{animIdsToStop = {13146710762}, replacementAnimId = 17861840167, animSpeed = 0.3},
{animIdsToStop = {12772543293}, replacementAnimId = 18435303746, animSpeed = 1},
{animIdsToStop = {13160158675}, replacementAnimId = 15661624908, animSpeed = 0.7},
{animIdsToStop = {13147719947}, replacementAnimId = 13948501945, animSpeed = 1},
{animIdsToStop = {13079023611}, replacementAnimId = 16460009013, animSpeed = 1.5},
{animIdsToStop = {13159656146}, replacementAnimId = 14138253524, animSpeed = 1},
{animIdsToStop = {13186381096}, replacementAnimId = 18965893260, animSpeed = 1},
{animIdsToStop = {10479335397}, replacementAnimId = 17838006839, animSpeed = 1},
{animIdsToStop = {12534735382}, replacementAnimId = 18181589384, animSpeed = 1},
{animIdsToStop = {12509505723}, replacementAnimId = 13497875049, animSpeed = 1.4},
{animIdsToStop = {12618271998}, replacementAnimId = 13499771836, animSpeed = 0.7},
{animIdsToStop = {12684390285}, replacementAnimId = 17857788598, animSpeed = 1},
}
-- Applying the Animation Sets
for _, animSet in ipairs(animationSets) do
handleAnimationDetection(animSet.animIdsToStop, animSet.replacementAnimId, animSet.animSpeed)
end
-- Hotbar Tool Names
local toolNames = {
{buttonIndex = "1", name = "Flaming kicks"},
{buttonIndex = "2", name = "Fire Fist"},
{buttonIndex = "3", name = "Flame Blitz"},
{buttonIndex = "4", name = "Spectre"},
{buttonIndex = "5", name = "Sideway Smash"},
{buttonIndex = "6", name = "Speed Rush"},
{buttonIndex = "7", name = "Core Blast"},
{buttonIndex = "8", name = "Hell's Arrow"},
}
-- Applying Tool Names to Hotbar
local player = game.Players.LocalPlayer
local playerGui = player.PlayerGui
local hotbar = playerGui:FindFirstChild("Hotbar")
local backpack = hotbar:FindFirstChild("Backpack")
local hotbarFrame = backpack:FindFirstChild("Hotbar")
for _, tool in ipairs(toolNames) do
local baseButton = hotbarFrame:FindFirstChild(tool.buttonIndex).Base
baseButton.ToolName.Text = tool.name
end
Thanks!
Bruh i cant fucking copy the goddamn thing on mobile.
@@zapricolousYk you can look this up in Google you don't have you say "Fu##"
@@RBX_tsb_Scripts Still doesnt work, when i copy the thing it copies everything like the videos title, every comments, etc.
Thanks bro your a real one
How to do this????
Im the new scripter too,but i don't know how to replace animations
Nah I’d win
@@Thundercalled tf does that mean
@@SanjarbekXushmurodov801
It's a meme where gojo says the phrase "Nah I'd win" after yuji says "would you lose?"
The anime is Jujutsu Kaisen
@@RaileynolanManantan-uy2ys oh
@@RaileynolanManantan-uy2ys thanks
2:25
"Stand proud, Garou. You're strong."
wait this is FIRE! even for a new scripter, you have a LOT of potential!
Honestly these types of hackers dont deserve to get banned especially if its a balenced moveset, or color changing stuff
I love how much hackers evolved from using for advantages into reskins
Mini jet dive finiher😂
2:25 fire arrow
It's too good for a new scripter omg
Finnallyy ive been looking for a script for Geno
this is actually pretty cool ngl. could you do mastery blade master or hero hunter? (make it cosmic garou)
nevermind u already did blade master
and Garou dang
Hey is it fe anyone can see the masted moves?
Yes
you can see all moves because its just anim
ye
hey, im new scripter too, where do you grabbing ult and other animations id?
bro you just change the looks and made it look like other move in tsb also blitz shot is just sonic ult your not a scripter also the ult is just a emote that does not match with the ult can it have different effects and animations?
Is the same movesets dude with different moves
Nothing changes !
And like why you scripting i need a answer dude why people scripting l
(No harm im just trying to speak fact's you can roast me)
It's basically just modifying the look not the movesets as he said and to respond to your question it's just for fun they don't really exploit its just differents animations but to recognize someone that is really exploiting he will tp fly or just do some unbalanced stuffs.
Do mastery martial artist next
I agree
Quit demanding.
@@Haroko-t1mwhat's your problem dude
@@Haroko-t1mif you are not having it why talking here?
@@amritagupta9435 all I’m saying is he doesn’t have to demand
Even his editing skills can’t save him from lag
Bro cooked a 5 star meal🗣️🗣️🗣️🗣️🔥🔥🔥🔥🔥
the ultimate second move is like kj's 20 20 20 dropkick💀💀
Im ur 45th subscribeer
DEVS DON'T BAN HIM HES A GOOD SCRIPTER
Hey bro can you help me make a shoot button script and im a new scripter and idk how to make scripts.
2:43 2:43 2:43
Do not do these things guys, he just doing it for content, ur gonna get banned if you do it,
@@RANDUMZZS thanks, i should put warnings before using it
@ you’re welcome :3
Bannable guys dont use this you guys maybe wondering “why is this bannable?” It bcz you have advantages after using jet dive you can use blitz shot (which is unpunishable and do alot of damage if fully charged and hit).So dont use it
You probably never played the game,using blitz shot after jet dive is not bannable and its part of the game,since you literally Hover if you use blitz shot mid air
@@12davindrafeliziowigie-ir51 i play the game dumbo,jet dive without this script doesnt fly too hingh (RNG) and this always fly so high
@@calvinlonga5370as if flying high would help in a fight, you wont even be able to combo easily with the jet dive only run, and running wont help in a fight too
@@calvinlonga5370 flying too high ain't doing much, you'll eventually fall. Also there's no advantage since you can only use blitz shot one time and boom cool down (don't even think about using the 2nd move)
@@Truongat-by6ku yes but max charged blitz shot deals like 25% isn’t that OP?
For the 4 minutes 11 minutes He's effectively banned
He changed genos movement and how the moves work😮😮😮😮
Its still the same only the animations and the names changed
It just a script that Changes your animation nothing really special you wont get ban when using this
you do get fucking banned for purely cosmetic animations because the moderation thinks its valid to ban for purely animations, and you get banned FOREVER
yo i am your 25th sub
2:25 bro really said “FUGA🤑🤑😎😎🗣️🗣️🤯🤯”
Dang bro you really got the squad laughing
@@Floatingice0 he do fr
Grow up no one uses those emojis anymore
@@LilTIDUS_OFFICIAL :(
@@LilTIDUS_OFFICIAL what's wrong,can't let people have fun?
this just makes you even more vulnerable and punishable
Eh, still the same moveset, just animation changes
Nothing changed really
@@DefinitelyZunji
> blitz shot is extremely slow(even if it was forced just for the animation of it you'll still have trouble aiming)
> if your flame blitz is still on cool down, then when your "spectre" doesn't land on the opponent it makes you open to any attacks for a whole half a second
> "fire fist" is completely inconsistent
> and pitifully, flaming fist is the only effective move here which is basically just the same as the original.
@@ZunoDubstepdude, thats a default game Blitz shot lol
@@ZunoDubstep it's a default blitz shot, the dude showcasing moves slowly
It's the same, ITS JUST ANIMATION CHANGE NOT ATTACK SPEED
@@ZunoDubstep he just hold it, that's why blitz shot is slow, if he just tapped then it would've been faster just like how it works in tsb
Why you showcasing that you can blitz shot after jet dive like if it was something unique about the mod
It is, without the script you need to do the finisher do it
@@BananaPeelfor-eating oooooo aaaaaaaaaa
Where do you get the script and can you use in fluxus@@BananaPeelfor-eating
Can you try to make an egg moveset?
Suriyu with extra steps😭🙏 (w vid tho)
Good work on the animations, by the way.
THE FLAMING KICKS IS LOWK FIRE
u shouldve done like a chest beam for ult attack 3
Incinarate wow it is like the fire arrow from jjk sukuna
Feels like those custom moveset videos lmao
How is bro scripting on mobile?
They have a auto ban thing in the game it self
I am a new scripter too i use delta and solara
Bro your gonna get banned because your hacking -_-
damn your subscribers is 666 ill save you ill make it 667
this is not op a single bit it's just custom anims
I THOUGHT THIS WAS A CUSTOM MOVESET MADE OUT OF OTHER MOVES
Make this an actual moveset at the strongest battlegrounds
how do i use the script
Third move supposed be called kaboom
Tell me how script i wanna be cool and have my own scripts 😔
How do you script or download script😭
No way 16k ppl are trying to script
Also make mastery for bald hero
Do garou hero hunter mastery
im kinda looking forward to using this
can you rework The blitz shot?
I deleted my script
Idk why many people like to using script
How do I put in roblox 0
Well at least it doesnt gives you so much advantage unlikely "fart smeller everybody knows"
Not gonna bro your pretty laggy but good mastery
Nah THEY HAVE TO ADD MASTERY’S
make a mastery garou moveset next
bro this is so hype! awesome!
You have ps+ no way!!
What executor?
Delta
delata x?
or y?
The ultimate is fire 🔥
How do yo7 do this?
Mastery sonic when?
You forgot the finishers and wall combo
Garou redo will have finishers
@@BananaPeelfor-eating alr
Bruh scripting can be unfair
Wdym op? It’s the same moveset
Bro has ps+ and why bro make this
You ruined the game, congratulations
Yes fuck this fricking script crap
I think brottha might get banned
THaNK YOU FOR THIS BRO I SCRIPT
Btw,How to download it?
Bro is hacking
Bro is the same ass moveset not even that overpowered and the animation just changed
yo do u take note that your mic is on? 😭
I don't know how to close it🙏
i am yo 27,400th viewer
Roblox ban speed run
Am a 5 year coder so yeah this is the easiest stuff ever
make the ultimate name is maximum overdrive
Yes very op it can spam blitz shot
whos gona tell him💀
gimme that script.
Tf is the link qt
Beacuse of you hacker this game is ruined
lmao, he is exploiter, not a hacker☝️🤓🤓🤓
@@Kirik_russ 🤓☝️ um actually i dont give fvuk
@@FatehaRahman-fo2wp why r u pointing to your name
@@Kirik_russ no you got the wrong idea im bald
@@FatehaRahman-fo2wpIt really isn't ruining it.
What is this edit💀
How.edit script bro
This script is cheeks and why even use scripts anyway play the game normally
@@muscleman1777 then why even watch it?
@@BananaPeelfor-eating cause I was curious to see if it was good only to get disappointed with that trash
You get an extra advantage wdym cheeks?
@@BananaPeelfor-eating it sucks
Goooooooood
Animation like suiriu
pls make garou mastery pls
Yoo
Hello there banana
Dude awesome