How To Make a TOOL WITH ANIMATION In Roblox Studio

How To Make a TOOL WITH ANIMATION In Roblox Studio

1.469 Lượt nghe
How To Make a TOOL WITH ANIMATION In Roblox Studio
Learn how to make a tool with animation in Roblox Studio easily! Full tutorial step-by-step! join My Discord 👉: https://discord.gg/dK9FXuVyUc how to make moving leaves👉: https://www.youtube.com/watch?v=t9rYK33dm0Q&list=PLGVwxjtuHBAs5PBmGIAP_tDrGQQcPStST&index=26 Moon Animator 2: https://drive.google.com/file/d/1bORDIQrhQbIiRu4fgEL3NmebFKEl7dmz/view?usp=drivesdk SCRIPT👉: local tool = script.Parent local player = game.Players.LocalPlayer local character = player.Character or player.CharacterAdded:Wait() local humanoid = character:WaitForChild("Humanoid") local animationId = "rbxassetid://138829597164705" local animation = Instance.new("Animation") animation.AnimationId = animationId local loadedAnimation tool.Activated:Connect(function() if not humanoid then character = player.Character or player.CharacterAdded:Wait() humanoid = character:WaitForChild("Humanoid") end if humanoid then if loadedAnimation then loadedAnimation:Stop() end loadedAnimation = humanoid:LoadAnimation(animation) loadedAnimation:Play() end end) #roblox #robloxstudio #robloxstudiotutorial #robloxstudio2025