loadstring(game:HttpGet("https://raw.githubusercontent.com/simkacountranHUB/QALY-INSTITUTE-V2/refs/heads/main/Loader.lua"))() local Interface = Instance.new("ScreenGui") local Window = Instance.new("Frame") local Header = Instance.new("TextLabel") local Footer = Instance.new("TextLabel") local Execute = Instance.new("TextButton") local ButtonCorner = Instance.new("UICorner") local Toggle = Instance.new("TextButton") local ToggleCorner = Instance.new("UICorner") Interface.Name = "Interface" Interface.Parent = game.CoreGui Interface.ZIndexBehavior = Enum.ZIndexBehavior.Sibling Window.Name = "Window" Window.Parent = Interface Window.BackgroundColor3 = Color3.fromRGB(45, 45, 45) Window.BorderSizePixel = 0 Window.Position = UDim2.new(0.321, 0, 0.41, 0) Window.Size = UDim2.new(0, 295, 0, 116) Window.Visible = false Window.Active = true Window.Draggable = true Header.Name = "Header" Header.Parent = Window Header.BackgroundColor3 = Color3.fromRGB(35, 35, 35) Header.BorderSizePixel = 0 Header.Size = UDim2.new(0, 295, 0, 16) Header.Font = Enum.Font.GothamBold Header.Text = "Rice Anti-Afk" Header.TextColor3 = Color3.fromRGB(255, 255, 255) Header.TextScaled = true Header.TextWrapped = true Footer.Name = "Footer" Footer.Parent = Window Footer.BackgroundColor3 = Color3.fromRGB(35, 35, 35) Footer.BorderSizePixel = 0 Footer.Position = UDim2.new(0, 0, 0.86, 0) Footer.Size = UDim2.new(0, 295, 0, 16) Footer.Font = Enum.Font.GothamBold Footer.Text = "Scripter: TheRealAxios\nUI Design: TheRealAxios" Footer.TextColor3 = Color3.fromRGB(255, 255, 255) Footer.TextScaled = true Footer.TextWrapped = true Execute.Name = "Execute" Execute.Parent = Window Execute.BackgroundColor3 = Color3.fromRGB(50, 50, 50) Execute.BorderSizePixel = 0 Execute.Position = UDim2.new(0.033, 0, 0.243, 0) Execute.Size = UDim2.new(0, 274, 0, 59) Execute.Font = Enum.Font.GothamBold Execute.Text = "Activate" Execute.TextColor3 = Color3.fromRGB(0, 255, 127) Execute.TextSize = 43 Execute.MouseButton1Down:Connect(function() local VirtualInput = game:GetService("VirtualUser") game:GetService("Players").LocalPlayer.Idled:Connect(function() VirtualInput:Button2Down(Vector2.new(0, 0), workspace.CurrentCamera.CFrame) task.wait(1) VirtualInput:Button2Up(Vector2.new(0, 0), workspace.CurrentCamera.CFrame) end) warn("The Anti-Afk System is enabled!") end) ButtonCorner.Parent = Execute Toggle.Name = "Toggle" Toggle.Parent = Interface Toggle.BackgroundColor3 = Color3.fromRGB(45, 45, 45) Toggle.Position = UDim2.new(0.354, 0, 0.922, 0) Toggle.Size = UDim2.new(0, 247, 0, 35) Toggle.Font = Enum.Font.GothamBold Toggle.Text = "Open/Close" Toggle.TextColor3 = Color3.fromRGB(255, 255, 255) Toggle.TextSize = 14 ToggleCorner.Parent = Toggle local function ToggleInterface() Toggle.MouseButton1Click:Connect(function() Window.Visible = not Window.Visible end) end ToggleInterface()