local UIS = game:GetService("UserInputService")
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local Modules = ReplicatedStorage:WaitForChild("Modules")
local Basics = require(Modules.Basics)
local Player = game:GetService("Players").LocalPlayer
local Mouse = Player:GetMouse()
game:GetService("RunService").Heartbeat:Connect(function()
print(UIS:GetMouseDelta())
end)
This is what I have so far, but it only prints out the true mouse delta if i hold right click. How do I make it print the mouse delta regardless of holding right click? and locking the mouse