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
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.
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.