✨ ТУТОРИАЛ по СОЗДАНИЮ МЕНЮ АНИМАЦИЙ в ROBLOX STUDIO! ✨
Культурная бомба
В этом ролике я покажу как можно сделать меню анимаций в Roblox Studio. Надеюсь вам понравился ролик, влепите лайк👍 и подпишитесь на канал, а также включите колокольчик🔔 и не забудьте написать комментарий💬 - Стоит ли мне снимать дальше видео по Roblox Studio и какие ещё игры можно поснимать! Приятного просмотра💛. 🎄Ссылки: ✨Девайсы: Мышь - Perfeo Wired Mouse Game Design Клавиатура - Kumara RedDragon Микрофон - Koradji Ardor Gaming Наушники - HOCO W35 🖥️Характеристики: Процессор - Intel Core i5 CPU 661 Видеокарта - Geforce GTX 1650 ti Материнская плата - ASUS P7P55-M 🖥️Скрипт В ServerScripService - local RS = game:GetService("ReplicatedStorage") local StartEvent = RS.StartAnimation local StopEvent = RS.StopAnimation local Otzhimania = script.Otzhimania StartEvent.OnServerEvent:Connect(function(player: Player, msg) if msg == &then local Char = player.Character local Human = Char:WaitForChild("Humanoid") local animTrack = Human:LoadAnimation(Otzhimania) Human.JumpHeight = 0 animTrack.Looped = true animTrack:Play() end end) StopEvent.OnServerEvent:Connect(function(player: Player, msg) local Char = player.Character local Human = Char:WaitForChild("Humanoid") local animTrack = Human:LoadAnimation(Otzhimania) Human:GetPropertyChangedSignal("MoveDirection"):Connect(function() if Human.MoveDirection ~= Vector3.new(0,0,0) then animTrack.Looped = false animTrack:AdjustSpeed(-1000000000000000) Human.JumpHeight = 7.2 end end) end) Теги: #animation