Из-за периодической блокировки нашего сайта РКН сервисами, просим воспользоваться резервным адресом:
Загрузить через ClipSaver.ruУ нас вы можете посмотреть бесплатно How do you make a MOBILE SHIFTLOCK BUTTON in Roblox Studio? или скачать в максимальном доступном качестве, которое было загружено на ютуб. Для скачивания выберите вариант из формы ниже:
Роботам не доступно скачивание файлов. Если вы считаете что это ошибочное сообщение - попробуйте зайти на сайт через браузер google chrome или mozilla firefox. Если сообщение не исчезает - напишите о проблеме в обратную связь. Спасибо.
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса savevideohd.ru
Want to add a mobile Shift Lock button in Roblox Studio? In this tutorial, I'll show you how to create one step by step! This video was inspired by a comment on my recent short—so if you need help with anything in Roblox Studio, drop a comment, and I might make a video on it next! Whether you're a beginner or an advanced developer, this guide will help you improve your game and enhance the mobile experience for players. Don't forget to like, subscribe, and turn on notifications for more Roblox Studio tips! @averagericemuncher Watch more tutorials: • Tutorials SCRIPT 1➡️: local Players = game:GetService("Players") local UserInputService = game:GetService("UserInputService") local Settings = UserSettings() local GameSettings = Settings.GameSettings local ShiftLockController = {} while not Players.LocalPlayer do wait() end local LocalPlayer = Players.LocalPlayer local Mouse = LocalPlayer:GetMouse() local PlayerGui = LocalPlayer:WaitForChild("PlayerGui") local ScreenGui, ShiftLockIcon, InputCn local IsShiftLockMode = true local IsShiftLocked = true local IsActionBound = false local IsInFirstPerson = false ShiftLockController.OnShiftLockToggled = Instance.new("BindableEvent") local function isShiftLockMode() return LocalPlayer.DevEnableMouseLock and GameSettings.ControlMode == Enum.ControlMode.MouseLockSwitch and LocalPlayer.DevComputerMovementMode ~= Enum.DevComputerMovementMode.ClickToMove and GameSettings.ComputerMovementMode ~= Enum.ComputerMovementMode.ClickToMove and LocalPlayer.DevComputerMovementMode ~= Enum.DevComputerMovementMode.Scriptable end if not UserInputService.TouchEnabled then IsShiftLockMode = isShiftLockMode() end local function onShiftLockToggled() IsShiftLocked = not IsShiftLocked ShiftLockController.OnShiftLockToggled:Fire() end local initialize = function() print("enabled") end function ShiftLockController:IsShiftLocked() return IsShiftLockMode and IsShiftLocked end function ShiftLockController:SetIsInFirstPerson(isInFirstPerson) IsInFirstPerson = isInFirstPerson end local function mouseLockSwitchFunc(actionName, inputState, inputObject) if IsShiftLockMode then onShiftLockToggled() end end local function disableShiftLock() if ScreenGui then ScreenGui.Parent = nil end IsShiftLockMode = false Mouse.Icon = "" if InputCn then InputCn:disconnect() InputCn = nil end IsActionBound = false ShiftLockController.OnShiftLockToggled:Fire() end local onShiftInputBegan = function(inputObject, isProcessed) if isProcessed then return end if inputObject.UserInputType ~= Enum.UserInputType.Keyboard or inputObject.KeyCode == Enum.KeyCode.LeftShift or inputObject.KeyCode == Enum.KeyCode.RightShift then end end local function enableShiftLock() IsShiftLockMode = isShiftLockMode() if IsShiftLockMode then if ScreenGui then ScreenGui.Parent = PlayerGui end if IsShiftLocked then ShiftLockController.OnShiftLockToggled:Fire() end if not IsActionBound then InputCn = UserInputService.InputBegan:connect(onShiftInputBegan) IsActionBound = true end end end GameSettings.Changed:connect(function(property) if property == "ControlMode" then if GameSettings.ControlMode == Enum.ControlMode.MouseLockSwitch then enableShiftLock() else disableShiftLock() end elseif property == "ComputerMovementMode" then if GameSettings.ComputerMovementMode == Enum.ComputerMovementMode.ClickToMove then disableShiftLock() else enableShiftLock() end end end) LocalPlayer.Changed:connect(function(property) if property == "DevEnableMouseLock" then if LocalPlayer.DevEnableMouseLock then enableShiftLock() else disableShiftLock() end elseif property == "DevComputerMovementMode" then if LocalPlayer.DevComputerMovementMode == Enum.DevComputerMovementMode.ClickToMove or LocalPlayer.DevComputerMovementMode == Enum.DevComputerMovementMode.Scriptable then disableShiftLock() else enableShiftLock() end end end) LocalPlayer.CharacterAdded:connect(function(character) if not UserInputService.TouchEnabled then initialize() end end) if not UserInputService.TouchEnabled then initialize() if isShiftLockMode() then InputCn = UserInputService.InputBegan:connect(onShiftInputBegan) IsActionBound = true end end enableShiftLock() return ShiftLockController SCRIPT 2➡️: SCRIPT 2 IS IN THE COMMENTS!!