У нас вы можете посмотреть бесплатно How to Fix the Annoying "Stuck Arm" Bug in Roblox R15 (Sitting & Unequipping Tools) или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
Roblox sit animation ID "http://www.roblox.com/asset/?id=2506281703" Watch the video to actually understand the code --[[ -- DELETE THIS local tool = script.Parent local player = game.Players.LocalPlayer local Humanoid = player.Character:WaitForChild("Humanoid") local Animator = Humanoid:WaitForChild("Animator") local Animation2 = Instance.new("Animation") Animation2.AnimationId = "rbxassetid://116877236398198" local SwordHoldAnimation = Animator:LoadAnimation(Animation2) local Animation = Instance.new("Animation") Animation.AnimationId = "http://www.roblox.com/asset/?id=2506281703" local SitAnim = Animator:LoadAnimation(Animation) SitAnim.Priority = Enum.AnimationPriority.Movement local function FindPlayersRig() if Humanoid.RigType == Enum.HumanoidRigType.R6 then return "R6" end if Humanoid.RigType == Enum.HumanoidRigType.R15 then return "R15" end warn("Couldent find players rig!!!!!!!") return nil end local function FixSittingAnim() if FindPlayersRig() == "R6" then return end if Animator and Humanoid.Sit then SitAnim:Play() end end Humanoid.Changed:Connect(function() if not Humanoid.Sit then SitAnim:Stop() end end) tool.Equipped:Connect(function() SwordHoldAnimation:Play() if FindPlayersRig() == "R15" and Humanoid.Sit then -- show stop SitAnim.Priority = Enum.AnimationPriority.Action --SitAnim:Stop() end end) tool.Unequipped:Connect(function() SwordHoldAnimation:Stop() if FindPlayersRig() == "R15" then FixSittingAnim() end end) ]] -- DELETE THIS |========TAGS=============| #roblox #robloxstudio #coding #help |=========================| [ How to fix right arm Roblox How to fix handle arm while sitting how to add animation to tools how to code ]