New Script For No Scope Arcade Mobile And Pc Fix — Instant

-- Touch events UserInputService.TouchStarted:Connect(function(touch, processed) if processed then return end touchStart = touch.Position end)

-- Bind shoot (LMB on PC, tap on mobile) if UserInputService.TouchEnabled then -- Mobile: tap anywhere to shoot (optional: add shoot button) UserInputService.TouchStarted:Connect(function(touch, processed) if not processed then noScopeShoot() end end) else -- PC: mouse button 1 UserInputService.InputBegan:Connect(function(input, processed) if processed then return end if input.UserInputType == Enum.UserInputType.MouseButton1 then noScopeShoot() end end) end new script for no scope arcade mobile and pc fix

local function noScopeShoot() local center = getScreenCenter() local ray = Camera:ViewportPointToRay(center.X, center.Y) local hit, position = workspace:FindPartOnRay(Ray.new(ray.Origin, ray.Direction * 500), player.Character) -- Touch events UserInputService