как сделать бег от шифта(тутор по Roblox Studio)

Published: 22 February 2023
on channel: Linex
32,024
693

Привет! Это видео как сделать спринт при нажатии на левый шифт.
подпишись на канал и кликни на колокольчик чтобы не пропускать выход моих новых видео! А чуть не забыл!
Скрипт из видео:
local player = game.Players.LocalPlayer
local sprint = 30
local walk = 16
game:GetService("UserInputService").InputBegan:Connect(function(input)
if input.KeyCode == Enum.KeyCode.LeftShift then
player.Character:FindFirstChild("Humanoid").WalkSpeed = sprint
end
end)
game:GetService("UserInputService").InputEnded:Connect(function(input)
if input.KeyCode == Enum.KeyCode.LeftShift then
player.Character:FindFirstChild("Humanoid").WalkSpeed = walk
end
end)


Watch video как сделать бег от шифта(тутор по Roblox Studio) online without registration, duration hours minute second in high quality. This video was added by user Linex 22 February 2023, don't forget to share it with your friends and acquaintances, it has been viewed on our site 32,024 once and liked it 693 people.