Advanced Roblox Scripting Tutorial #14 - Animation (Beginner to Pro 2019)

preview_player
Показать описание
Advanced Roblox Scripting Tutorial #14 - Animation (Beginner to Pro 2019)

Hey guys! Welcome back to another roblox scripting tutorial. In today's video I am going to be teaching you about animations and the animation editor in roblox. This is a very easy tutorial and there honestly isn't much scripting so it should be pretty easy to follow. Anyways enjoy!



--Join my Discord Server to learn and meet other developers!--

Link to Beginner's Tutorial Series:

--What is this series about and who is it for?

So this series is meant for people who really want to learn exactly how to script, if that is you then I promise by the time you watch this whole series you will know exactly how to script on roblox. Anyways be sure to subscribe to see whenever I release a new tutorial and I will see you guys in the next one. Peace!
Рекомендации по теме
Комментарии
Автор

Guys, if anyone is watching it today, the Animation Editor and Rig Builder have been moved to the Avatar category!

Real_Joe_Dad
Автор

15:00 Start here if you already know how to animate. This is where the scripting begins

fxnlxn
Автор

If anyone watching this year is deprecated (Which means its outdated and shouldn't be used) instead fetch the animator in the humanoid like so:

ahmedmohamady
Автор

For the people that are still watching, dont quit. You will eventually get it. I have quit like 3 times but i keep coming back and this is the last time. So dont quit

Lit
Автор

Yo thx for actually being rlly active without the breaks I love learning roblox tutorials! 👍

taco_cat
Автор

Dude stop saying “I’m sorry” when the video is long, when the video is long I understand the topic better ❤️🤙🏻

shinsokudev
Автор

"alright, for the lefties out there, we are going to do the left arm."
5 seconds later: "alright so click on the right arm."

fabc
Автор

If you want your animation to run when you press a key here's how you do it

Do all in Localscript btw

local LiftingAnimation = script.Animation

local player = game.Players.LocalPlayer

local char = player.Character or player.CharacterAdded:Wait()

local hum =

local LiftingAnimationTrack =

local UIS =



if input.KeyCode == Enum.KeyCode.R then



end

end)

sirius_lua
Автор

For anyone whos confused as to why character isnt a child of localplayer, instead do
local Humanoid =
This will make it find a child named humanoid of an object in the workspace named the same thing as the player. Since the player model in the work space will always be named the same as the player, it will find the humanoid of the players model.
However if there are models in the game that have a humanoid that are named the same as a player who joins it will break the script. So i suggest u name the models or their humanoids names that cant be used as usernames. You can also do Humanoid.Parent to access the playermodel.

LukeLolFC
Автор

Yaass i don’t need to be afraid of scripting every obstacle can be overcome with patience

Rinkyu
Автор

Thanks i already knew how to do it but you made it way easier

BallChewer
Автор

YO THANKS I AM SO HAPPY i was watching other tutuorials and i couldnt understand it but when i watched u it worked

niklauss
Автор

For anyone wondering why your animation isnt working if you set it to work when u click a tool, it needs to be set to action priority or else it wont work, and for your custom idle the animation needs idle priority

not_eagleye
Автор

Thanks for staying with the scripting tutorials it really helps alot!

yelezi
Автор

Hey there, if ur getting error like nil value or smthing

here :

local AnyVariableYouLike = script.YourAnimation
local player = game.Players.LocalPlayer
local char = player.Character or player.CharacterAdded:Wait()
local hum = char:WaitForChild("Humanoid")

sirius_lua
Автор

local anim = script.Animation
wait(1)
local player = game.Players.LocalPlayer
local char = player.Character
local hum = char.Humanoid
local animTrack = hum:LoadAnimation(anim)

animTrack:Play()
attempt to index nil with 'Humanoid'

Iocaluser
Автор

15:00 he starts to do the script (make sure you got the animation ID)

reality
Автор

why mine like this
attempt to index local 'char' (a nil value)
???

ItzLoDz
Автор

There's an error called attempt to index nil "Humanoid"
But instead I put:
local char =

liamjiromasao
Автор

fialy a episode lets gooo bdw r u gonna work on a dream game like robuilder? that is so fun to watch

Xtency_X