Universal Script 📌
29.8k Views

Maxus Shiftlock

Universal Script 📌Uploaded by
10 months ago
Please login to perform these actions:

Description

Maxus Shiftlock gives players a smooth and personalized shift-lock experience in Roblox games! This script allows you to lock your character's orientation to the camera, and you can easily toggle shift-lock on and off with a dedicated UI button. You can also quickly toggle with keyboard support (Left Shift key by default). Perfect for those looking to add professional camera control to their game!

View Raw
Edited By: Murat Download


Comments
1
User profile picture
NotJohnDoeExploits 10 months ago
-- Maxus Shiftlock -- local ShiftLockScreenGui = Instance.new("ScreenGui") local ShiftLockButton = Instance.new("ImageButton") local ShiftlockCursor = Instance.new("ImageLabel") local CoreGui = game:GetService("CoreGui") local Players = game:GetService("Players") local RunService = game:GetService("RunService") local ContextActionService = game:GetService("ContextActionService") local Player = Players.LocalPlayer local UserInputService = game:GetService("UserInputService") local States = { Off = "rbx*et://textures/ui/mouseLock_off@2x.png", On = "rbx*et://textures/ui/mouseLock_on@2x.png", Lock = "rbx*et://textures/MouseLockedCursor.png", Lock2 = "rbx*et://SystemCursors/Cross" } local MaxLength = 900000 local EnabledOffset = CFrame.new(1.7, 0, 0) local DisabledOffset = CFrame.new(-1.7, 0, 0) local Active ShiftLockScreenGui.Name = "Shiftlock (CoreGui)" ShiftLockScreenGui.Parent = CoreGui ShiftLockScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling ShiftLockScreenGui.ResetOnS* = false ShiftLockButton.Parent = ShiftLockScreenGui ShiftLockButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255) ShiftLockButton.BackgroundTransparency = 1.000 ShiftLockButton.Position = UDim2.new(0.7, 0, 0.75, 0) ShiftLockButton.Size = UDim2.new(0.0636147112, 0, 0.0661305636, 0) ShiftLockButton.SizeConstraint = Enum.SizeConstraint.RelativeXX ShiftLockButton.Image = States.Off ShiftlockCursor.Name = "Shiftlock Cursor" ShiftlockCursor.Parent = ShiftLockScreenGui ShiftlockCursor.Image = States.Lock ShiftlockCursor.Size = UDim2.new(0.03, 0, 0.03, 0) ShiftlockCursor.Position = UDim2.new(0.5, 0, 0.5, 0) ShiftlockCursor.AnchorPoint = Vector2.new(0.5, 0.5) ShiftlockCursor.SizeConstraint = Enum.SizeConstraint.RelativeXX ShiftlockCursor.BackgroundTransparency = 1 Shiftlock
Please Login to add a comment.