How can you make a cooking animation?

Hi Devs from all Roblox Community :wave:

I need help with this question

Question

How can you make a cooking animation?

I think you guys know that there are some games that have a animation that when you want to make a food, you will have a cooking animation like Restaurant Tycoon 2 or My Restaurant

With this, I wanted to know how you do this animation in this place that you can look by the picture

image

If you guys know how can I do that, I appreciate your amazing help!

Open Roblox Studio, connect to your place, click on ā€œPluginsā€ at the strip on the top left of your screen, click ā€œBuild Rigā€, pick a Model type (by clicking on any of the two buttons directly underneath the text ā€œRig Builderā€) depending on your gameā€™s configuration and a Rig type, depending on preference, again, by utilizing your left mouse button. Once you have inserted the Rig (the model which should appear in your 3D world view), you may move onto creating the animation. Select the Rig in the explorer (in Workspace, click ā€œ>ā€, find the button which says ā€œDummyā€ and perform a fast left mouse button up and down motion) or via holding your left mouse button and dragging your mouse over the area the newly created character is in, until a box surrounds it, after which you may release your mouse button. You are then encouraged to move your gaze back towards the top of the Studio application, and click on ā€œAnimation Editorā€. Once there, you may begin animating.

3 Likes

Can you also insert a script to make the
Edit: Iā€™ll try and find the script

ā€” hereā€™s a good idea of how to do it
ā€”script to make the animation play
local player = game.Players.LocalPlayer
local mouse = player:GetMouse()
local Animate 
local Humanoid = player.Character:FindFirstChild('Humanoid')


  local Animation = Instance.new("Animation", player.Character)
  Animation.AnimationId = "rbxassetid://YourID"
  Animate = Humanoid:LoadAnimation(Animation)
  Animate:Play()
 ā€”and then this line of code makes it stop
Animate:Stop()
ā€”also make sure that the animation for R15 is playing on R15 humanoids, same goes for R6.

Indeed, after the animation has been uploaded to the Roblox CDN servers.

yes
just like on a normal player. If you have your dummy/npc/object filled with bones you can import and play any animation

well, kind of