#🏃︱animating
490104 messages · Page 556 of 491
IMO i like the 2nd but the 1st and 3rd are a bit lacking
shoulder move in 1st is totally unnatural and bouncy and in 3rd the hip rotation looks weird
except for the run which actually looks p good
so ur thinking that an r6 rig anim should have a realistic looking harm that should look like its the shoulder adn not wrist
if you animate arms with it
ohhhhh
the r15
the arms arent animated cuz they have a separate anim based on what gun the character is holding
it isnt crouch the walk is based off the idle pose
the first one is real good
like nothing i'd change personally at all
maybe just lessen the bounce at the end
true
tyty
An animation doesn't have to be completely realistic and can be bouncy solely for stylistic choice (It's executed nicely too)
Hip rotation seems fine to me, they're in a stance so it makes sense that they walk like that 
ye
just looks a bit weirdly pointed out to me
commissioner liked the pose so i went with it
but nonetheless the anims have smooth keypoints
idk what rank, what is a a3 work supposed to look like 😂
Just means you're advanced really
what does a belt have to do with advanced
i thought he meant this
who's pry
supp
oh hola
@stiff oak yo can i have a3 :)))
he's playing terraria
The new league is forming 
yes
i will be in the league 
are youtube links allowed
eys
nice
is that moon
Luvseals is a good animator
They've just never been ranked
My eye has been on you though 
he probably doesn't want bragging rights role
https://www.youtube.com/watch?v=Z-bzY0vOAOg @terse swan what is this
very old i made when i was 11 or 12
the person in the video isnt me
i just looked up a random video with a skeleton in it
oh
You can brag with a3 and a4, any less and you'll look like an idiot 
Luvseal is probably eligable for a3 though so
He can brag
did you just call a2 bad
well
** You are now Level 10! **
It's not "bad", just not as overpowered as before
it got nerfed 😭
Like if you're a2 in the new ranking you're pretty much low-maybe mid a2 at best
With a3 being the new high a2 I guess
i like how baham is the one doing the ranking. for some cases
So you could brag, you would just look like someone who takes small achievements way too seriously
bragging is ehh anyways
he's only doing it because we don't have much a3's right now, star ranks (aka old a3's) are dead
Yeah, it just seems more believable when you're really good
If you brag when you're mid you look stupid
yup
bro those ppl
where they post their anim and then fight you on every piece of advice you give them
falco's last message was on december 7th of 2020 lol
did i just accidentally start a debate
no
no
can i say the n word here
🗜️
so very cool
if the spin was faster it'd have more power
but it does look cool

greatsword idk
i see alot of people using greatswords so uh
yes
i also noticed the sword being kinda sideways on the charge up so
gyazo bad
toolbox model btw B)
its so bad, bad animator
it's not that good to role 1 you should work on the arm movements
a1
yes
and legs it's like a paralise person torso spining while everything stay the same
Ranked
A3 is now advanced (So it's technically the new a2)
although imo, the sword movements don't seem to match the body movements that well
why was a2 nerfed?
A1 literally means beginner 
Im crying
the animation is pretty cool, but the blade goes into his neck 👀
' sad music
show animations then
this is
beginer
bruh
' i t is ju st the s am e anima ti on s
this one is the best by far. a completely different level than the other ones you posted
' t h a t i s o l d
beginner
Since a2 now means intermediate level, getting it isn't too hard now, a3 is the new a2 
we get it reborn
you're a3

Just saying so he's aware why some people got a2, if it were old ranking nothing would have changed
when the torso moves the head moves to
just make it so the head looks ofrward
when you rotate the torso?
See, you not knowing that just tells me you're a beginner
bruh
When doing combat they should always look forward 
i m c r y i n g
wtf
ok cool
you're showing "old ones"
but like
can you show new shit?
cuz you're not gonna get ranked any higher if you show old ones
im still working on this one
n e w e s t o n e
d a s h
f r o n t d a s h
ye s i am so beginner
im prob just worst than a a1
this is my best one ttps://gyazo.com/00411b9c28e3df902766a17f890475af
ttps://gyazo.com/00411b9c28e3df902766a17f890475af
oop
here
this a3 🕶️
no
yes

A YES
ask deez for help
whos DBIYM?!
Deez Balls In Yo Mouth
travis to drake to coco grandma to daburger
same
are you funnier than jimmy fallon tho
true
hey so I made a custom rig and I have an eye inside the rig that is coded to track the players movement for can i make it stay inside the rig without making it welded to it since if i weld it to the rig it moves it all with it
u can join general call if u need visual example of what i need help with
Sounds creepy but cool at the same time
have you tried using a motor6d for it?
ah, so for rigs you need to have all of your moving parts connected by motor6ds
(or bones, but we won't talk about that)
I believe most rigging plugins will automatically create the attachments and motors that you need in order to rig it
I've been doing all mine manually lol
at least until I write my own plugin for it
well ik I Riged the whole model using that but it still is the same as a weld
the part that rotates using the code ends up rotating the entire rig
@stiff oak
double check the attachments and make sure they're in the right place?
hop in the call if u dont mind u dont have to talk ill justy shou u
show*
#General 2
@errant dust what CFrame operation were you using?
SetPrimaryPartCFrame? or directly changing CFrame?
@stiff oak direction
it might take some fancy math, but I think you can do cframe.angles without breaking joints
@stiff oak ```lua
local AggroDistance = 10
local FireRate = 0.01
local turret = script.Parent
while wait(FireRate) do
--find the target, Detect if its realistic to shoot
local target = nil
for i, v in pairs(game.Players:GetPlayers()) do
if v.Character then
local human = v.Character:FindFirstChild("Humanoid")
local torso = v.Character:FindFirstChild("HumanoidRootPart")
--local torsoXY = Vector2.new (torso.Position.X,torso.Position.Y)
--local turretXY = Vector2.new (turret.Position.X,turret.Position.Y)
if human and torso and human.Health > 0 then
print ("In range")
target = torso -- sets target to torso
else
print("Object in the way")
end
end
end
if target then
local torso = target
turret.CFrame = CFrame.new (turret.Position, torso.Position) -- CFrame makes the turret.Position face torso.Position 23
end
end
this is my code
idk why it breaks joints
ah yeah... because you're using CFrame.new
which is actually depricated in favor of CFrame.lookAt
but even that I think will break joints
try just changing .new to .lookAt and see if that works
that code took soo long to debug lol now i have to recode it
no no no, just one line ^^
man I hate how hard it is to find info about rigging beyond just 'use this plugin'...
I mean
it really is that simple tho
It literally explains in YouTube videos how they work
but I want to know how the plugins work
probably is
who is aki
aki nuts
yooo this is nice

WIP but i just thought this was cool
yoo nice constant anim
hell yeahh brotha'

imo he a good animateor
you see he was supposed to dash towards someone but he missed
https://gyazo.com/a868398017633c5a14dca7fe34736d2e
nvm he hit him
Zoos ur not gonna ask for a2?
Basically all the mid a1’s get a2 now
I think that might be a3 by the current standards
Idk
i think people should not ever ever get an animator role just for animating a roblox person in blender.
this is roblox animationing.
not blender.
😐
How did y’all learn to animate
By just animating
I often went to study other animator's things
see how they did it
also watch some videos on the principles of animation
Ah ok thank you
** You are now Level 1! **
who
🤢
then how did falco and hello get a3
so as effects
still trying to make walk anims, just focus on the body movement and legs ig
the arms and head are still confusing me
i was about to like it until i saw the jojo rigs
naruto run
LMAO
thats good
FRIK
I thought I got a2

how do i make like
a
the arms sway look good
ye
dont the arms need movement
k.
bro
why is my
gyazo
fps
so
bad
its like 14 fps
I assure you all it is much smoother then this doodoo gyazo footage
naruto runs usually dont have the arms swaying too much
regular runs have them going crazy with the omvements
but naruto runs are simplistic
semi alr
ye
so
when the torso goes up
push the arms down a bit
and when the torso goes down
push it up
so its kinda constantly in the same place
alr
but like
is the legs/run
alright
like the legs in general
its like my 3rd walk anim
run*
with blender
Back
i cant even get a roblox model into it
Animation Looks Good
Ye but not often and only for sfx
I don’t use blender
But moon animator
Blender sometimes break studio
Idk
you need a plugin
I don’t use
called Blender export or something like that
i havent done it thuogh
I tried but couldn't get it to work
what I said
when i try it always breaks
Idk
yeah
that one yeah
doesnt work
thats what i used
but my models are still broken when i put them in blender
legit
they are in the floor
and
the humanoid rootpart is showing
Oof
** You are now Level 1! **
make it transparent
ig
Maybe try making it transparent after you export (idk cuz I don’t use blender)
the plugin is somewhat old now though
might not work
you can make your own rig in blender
as the roblox one is fairly simple
no like
i cant use blender
its rlly annoying
i cant figure out blender
i wanna try animating in it tho
I can’t even figure Out animating
ever heard of yt tutorials
bruh
what
you mean roblox rig?
yeah and the model
like a dummy model
model as in a map?
if so then it breaks the rig
no bro
like
a
dummy model
dummy rig?
yes
ok
not telling


i have
they are all the same
and when i try them
doesnt work
can i get a dummy rig file
please
man
** You are now Level 6! **
Jojo. 
JoJo
Jojo
whyd my message get deleted 😦
jojo mf's be like
.
Booba
how tf did roblox moderation not detect that
i also found this on toolbox
.
I'm still trying to figure out how to do rigging and import-export without plugins...
None of the rules are explained very well in the api
I've got it into blender fine, but going back to studio isn't easy
This is where I got stuck https://devforum.roblox.com/t/how-to-rig-animate-a-model-in-blender-for-export-to-studio/1002929
Hi, so I’ve been searching around quite a while and haven’t had any luck trying to find out how to rig a model in Blender to either animate it there, or import back into Studio to use default animations. My big requirement is that I am not using any plugins, because I want to understand how this stuff actually works myself. I have no problems ...
save it as an action
export the model to studio
and fbx animation tool
I may have some better ideas now, but I haven't gone back to it
See, I'm trying to do it without plugins
thats not a plugin
its a default feature
with roblox studio
animation editor
oh, you said fbx 😛
r63 piggy
booba
i thought you hated jojo
booba
4head lied
ok
sketch
this is r63
gender swaping nsfw
gross
yeye

Medigun
Idle: https://gyazo.com/41158a84dcae102473c9353c6b692eb4
Assault Rifle
Idle: https://gyazo.com/46729ebcc54c21a05087d217ecc1f64b
Fire: https://gyazo.com/ba51713c4a1e111af9c25f3696ab2066
Sprint: https://gyazo.com/b88ebf1070a86f830e89f96d1b84a76b
Reload: https://gyazo.com/1d83a560495df5dbdd50f3fb7d40a416
Anyone know how to stop this from happening?
soap trused him
...
finally decided to try out sword animations again
@slender atlas now that one I think looks really good
Really shows the weight of the sword
and the swing... although you might want to do something at the very end for a follow through
how to make wiggle bone blender addon not decrease 20 frames
i was gonna, but i just felt like crap today lmao, i'll do that later on after exams
if any old a2's are seeing this, please tell me if thats a2 with the old standards
it is without the oversized sword clipping through the head
wait wat
all greatsword users have scars anyways

a grey man with a block head and a generic dream smile
thats dream in roblox
Mmm
FINE ILL FIX THAT
there 
floor clipping?
ill do it in 4years, when i stop procrastinating on it

i can do better >:o
but like imm lazy so like nvm
i spend like 20 min on an animation just for roblox to mess it up
let me not talk about blender smh.
feet planting needs work with the r6.
at the end and at the swing
love the weight btw pretty good
Ill work on that 
Send something in here again, a2 standards are much lower now. Just sayin if u want it
nah i am lazy these days and i know i improved maybe when i get some time ill post for it
Yessir
maybe sometime this weak
also with school i need the highest grades possible.
I just want decent grades ngl
** You are now Level 17! **
we all want something lol.
Granted im trying to apply for a scholarship, so im gonna need to step up a few notches
Cya
roblox export is already cringe itself
Are they rigged?
tell me about it
humanoid root part go brrrrrr
i meant for blender
something I've been working on for a while now https://gfycat.com/tatteredchubbyeyelashpitviper
animation of an exploding 3OF82 shell from a 125 mm tank cannon.
How do I uh, make it where I first person view in blender (R15)
ik
i just never get the rig animation to play
when i import it in
with moon humanoid root part just takes a trip
and default animator is good just that it's plain.
Moon animator 😎
yes
https://gfycat.com/amusingkeengrayfox random thing i made im not done with ti but idk what to do with it so here enjoy
the camera is kinda weird lo
Man
nice
If it’s an idle, it looks forced to breath and it’s weird. But at least your doing an idle first unlike other beginners doing a too garbage fight scene
Idle, walk, run, punch, scenes
that's hot
thanks :D
@stiff oak almost forgot to post the finished video https://www.youtube.com/watch?v=QeKqI07TNgM
This is not a simulation, but an animation. I hand animated the entire thing :D Took a little while lol. It is based on a real projectile called the 3OF82 high explosive fragmentation round. It's missing the fin assembly and aerodynamic nose cone because those would take even longer to render and animate.
awesome. You animated that to be physically correct?
at least 90 percent accurate yeah. The speed of the explosive shockwave traveling through the casing is about 50 percent lower than real life but it makes it easier to see what's going on imo.
Also, the shell's casing would probably have 2 or 3 times more fragments but it would take 2 or 3 times longer to animate so I had to keep it a bit simplified.
(if you use the , . keys while paused you can look through it frame by frame)

How often does that show up
atleast post one animation when saying that
Decent, sleep deprived as always
Damn
Its not because i have alot of things to do, im just lazy like that
also @eternal meadow I believe your name should have some english characters or numbers at the start of it
K sorry
At some point they spammed
and got the black list
according to the logs the mods checked
Does not apply in social media
Are u stupid
its a private organization
“Don’t feel like it”
Sir, this is a discord
Fuck off if ur not gonna listen to any of us
This is probably why he’s blacklisted anyways, god
Ur attitude probably does
Get your goddam ego checked, thats one.
Where dumb Is y not registering a modmail

whats going on

Yes it did
He doesn't rank fps anims
Howmany a2 fps animators are there
https://streamable.com/xlrhz7 final product
no
well he's gonna have to, lol
the principals of animation are the same no matter what the subject is
set-up, smooth transitions, action-reaction, follow through
but he can't really rank fps anims since he doesn't know that much of how guns work
true, but he can tell if the motions are smooth and realistic
seems very jerky
@eternal meadow I need 1 or 2 of the rank 3 animators to get bumped up to * :/ any suggestions?
do you mean animator 3's getting promoted to star
I'd promote reds, but he's made it very clear that he doesn't want to participate in the system
I mean, I'm trying to avoid the problem we just had where no one got promoted because the higher ranks were never around
why do you think I'm going through and promoting people?
Damns these animations are too good

It's supposed to be like a boxing stance?
Yeah, the motions seem kinda jerky.. it's not very smooth
check the pins
Oh, I can give you animator 1 for it if you want though
of course
i dont know
i dont use moon 
blender
no way for what
idk

i got the addon at 2.92
maybe i made too much
7
those are the easings
it's basically how the animations change over time
most of them are mathmatically based, ie exponential goes faster than quadratic
of course, you just have to find the installation for it
Its hard i still dk how to do it either
animations don't have quite the same easings as guis
but the principal is the same
yup
Hello! Does anyone know where the play button is to play an animation you’ve made? (On Moon Animator)
I’m kind of new to animating
spacebar
SPACEBAR
same thing
SSPPAAACCCEEEBBBBAAAARRRRR
Alright, tysm!!
** You are now Level 1! **
welcom
bru
imma go make some jojo r63 animations
wat
is it been driven over? looks like tire marks
** You are now Level 9! **
i doesnt if you know how to use it
cap
Moon animator 
no
Ok fellas here’s how it usually goes
Roblox animator, then to moon, then to blender
Also blender doesn’t suck
It’s just not as clear as moon but it’s better once you learn it

https://www.roblox.com/library/716953901/Blender-rig-exporter-animation-importer install this instead
@eternal meadow pls animator
Medigun
Idle: https://gyazo.com/41158a84dcae102473c9353c6b692eb4
Assault Rifle
Idle: https://gyazo.com/46729ebcc54c21a05087d217ecc1f64b
Fire: https://gyazo.com/ba51713c4a1e111af9c25f3696ab2066
Sprint: https://gyazo.com/b88ebf1070a86f830e89f96d1b84a76b
Reload: https://gyazo.com/1d83a560495df5dbdd50f3fb7d40a416
hey uh
you know pry's featured animation?
i have a question
so in another server, someone posted this in the creations channel https://gyazo.com/59d1e6c1f8d56c1a871ce8694c892ecf
it's literally the same thing
embed fail
nvm
did the guy somehow get the original file?
@stiff oak i need a little help here
no

i don't
its true
same
i cant get mine to walk
when i try to make the legs move
it looks like its dying
slowly
i dont make walks
so they just move around with no animation
YEA FRICK BLENDER
BECAUSE YOU BLEND WITH YOUR MOM!
TRUE
Your not funny
BLENDER SO BAD
USE ROBLOX PLUGIN
IMAGINE BEING A "BAD ANIMATOR"
👍
better than moon animator tho
kek
who posted it?
ah, yeah I didn't get that far lol
replace node with male
Jokes aside, how can I learn to animate (In Roblox Studio, Blender, Source Film Maker, etc) I actually want to learn and get good at it.
** You are now Level 1! **
Dm videos and tutorials if you know any
i agree but i just end up using both because sometimes i might just want to make an animation from a super advance studio, and sometimes i like that classic moon animating when i don't have that much time.
i like how he still calls blender a bad program because he doesn't even know how to animate in it 
i don't know if that's targeted at me but blender is not bad. anyone who know's how to use blender would say that.
no, bad animator
lol
getting mad at blender doesnt help you get better
and its not bad program
you are bad user
When you export the rig to blender i assume you have the plugin installed
open the menu on the right side and click rebuild rig
yes, and use child of constraints 

same

thanks
Blender shits on moon btw, this is coming from the only person in III that uses moon. Until moon gets graph editor and especially inverse kinematics it will always lose to the former 
To give you a perspective, the only people that use moon that are in a3 and a4 are me and reds
I use default roblox animator

reborn and reds do be representing moon in this server
Everyone else in the rank uses blender
WHEN WILL WE SEE THE LIGHT OF DAY OF IK AND GRAPH EDITOR IN MOON
the last thing I saw from six was a numberpad gui

when will roblox default animator improve T-T
Never 
its either reborn has really weak and small fingers, really weak brain for thinking what to type, and extremely crappy keyboard, or pc crashes every 5minutes of him using it
It takes me so long to animate on that shit
I can type fast
I just think about stuff before doing it
Like right now
My name is jimmy jimmerson and I like to type
Like very very fast
Seriously
Like very
VERY
Fast
Yay
Yay
I'm scrolling through fiverr roblox animations, and im already seeing stolen animations after 2seconds of me being in there
SHit this is old
I was gonna open source it
Wait krumpet were you the one that made those animations from before?
yeah lol
Only one of them is half mocap
whats a mocap
yeah
Pretty much, it's where real life people can capture their motion and turn it into animations
That's the summary of it atleast
^
People don't directly do it on roblox, but there are websites that have these animations like mixamo
Mhm, that's why when I see a somewhat realistic animation I gotta ask if it's mocap before ranking
how to mocap
I started out editing mocap and thats how I learned to animate
get a suit or something
The only kinda half mocap from the clip i posted was the run animation
I definitely
have 2 - 10k+ in my bank account
wtf, WHY ARE U WORKING ON ROBLOX CRAP
people actually invest thousands into roblox wtf.
That was sarcasm btw
yee
Once im done with this re-topo T-T ill open source the rig sometime so people can try to make good games
all i know is that im getting an actual table and chair for my birthday, and vr headsets are waaayy too expensive to ask for anyways
Im excited to get a decent posture
This is what i use, thats why i really wanted new ones.
never
poggers
BUT I AINT
I CANT REST MY BACK
MY FEET IS STUCK INFRONT OF MY DESK
I HAVE TO BEND MY BACK
IF I WANNA ACCESS MY LAPTOP


gaming setup 


wish i had nitro
My gaming chair is a wooden chair
mine is plastic and with abunch of holes inside of it
can someone help me with animations in my game
where do i place my moon animator save at to make sure everyone spawns with it
hi i need an animator

why visible humanoid rootpart
none of us actually makes it invisible
sword animations
first time using moon in a while and ngl i like it
all linear cuz i learned how to do that kinda
https://streamable.com/babzun
ok
its really slight so yeah its not really noticeable
really only visible when u look at it frame by frame
anyone know how to make this animatable?
like notice how the avatar's body parts has a thing but not the sword
child of cons
child of constraints
then, use child of constraints
just hit ctrl C, bar ui shows up
and click child of constraints
kk
the bone will be high lighted green
it works the same as a weld
hold on im watching a video of it
seeing if it'll work
i added a child of constraint to the sword
what do i do now
@eternal meadow
im desperate at this point 
wdym
hold on
lemme get a screenshot
i added a child of constrant and nothing is there on the sword
im so fucking confused
dude it's simple
my internet?
then open google and then type http/youtube.com then go to search and type how to animate with blender then watch 5 videos to waste your time until you find how to export and import rigs to blender then animate them. NOT CLICK BAIT.
see thats not hard.











