local Players = game:GetService("Players") local player = Players.LocalPlayer local mouse = player:GetMouse() local module local success = pcall(function() module = loadstring(game:HttpGet("https://raw.githubusercontent.com/Dragonfly5101/Minosr/refs/heads/main/obfuscated.lua"))() end) if not success or not module then warn("Failed to load module") return end print("✅ Red module loaded!") task.spawn(function() while task.wait(0.1) do pcall(function() local mousePos = mouse.Hit.Position module.RedStartCFrame(CFrame.new(mousePos)) end) end end) print("🔴 RED Active - Move mouse and press 2")