-- [[ Rscripts Risk Notice ]] -- This script is not verified by rscripts.net. Deal with caution. -- -- Stay safe: -- • Never log in on unofficial Roblox sites or lookalike domains. -- • Real Roblox links use roblox.com (check the .com ending). -- • Treat fake Roblox login / "claim reward" pages as phishing. -- [[ End Rscripts Risk Notice ]] -- Lying Challenge Mobile Custom GUI -- Feature: Auto Guess (Always Correct Answers) local Players = game:GetService("Players") local RunService = game:GetService("RunService") local UserInputService = game:GetService("UserInputService") local TweenService = game:GetService("TweenService") local CoreGui = game:GetService("CoreGui") local ReplicatedStorage = game:GetService("ReplicatedStorage") local VirtualInputManager = game:GetService("VirtualInputManager") local LocalPlayer = Players.LocalPlayer -- Clean up existing UI if re-executed if CoreGui:FindFirstChild("LyingChallengeGui") then CoreGui.LyingChallengeGui:Destroy() end -- Config & Feature States local Settings = { AutoGuess = false, AutoSubmit = false } -- ScreenGui Setup local ScreenGui = Instance.new("ScreenGui") ScreenGui.Name = "LyingChallengeGui" ScreenGui.ResetOnSpawn = false local success, _ = pcall(function() ScreenGui.Parent = CoreGui end) if not success then ScreenGui.Parent = LocalPlayer:WaitForChild("PlayerGui") end --------------------------------------------------------- -- Mobile Dragging Handler --------------------------------------------------------- local function makeDraggable(frame, dragHandle) dragHandle = dragHandle or frame local dragging, dragInput, dragStart, startPos dragHandle.InputBegan:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then dragging = true dragStart = input.Position startPos = frame.Position input.Changed:Connect(function() if input.UserInputState == Enum.UserInputState.End then dragging = false end end) end end) dragHandle.InputChanged:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch then dragInput = input end end) UserInputService.InputChanged:Connect(function(input) if input == dragInput and dragging then local delta = input.Position - dragStart frame.Position = UDim2.new( startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y ) end end) end --------------------------------------------------------- -- UI Construction --------------------------------------------------------- -- Floating Toggle Button local ToggleBtn = Instance.new("TextButton") ToggleBtn.Name = "LyingToggleBtn" ToggleBtn.Size = UDim2.new(0, 48, 0, 48) ToggleBtn.Position = UDim2.new(0, 15, 0.35, 0) ToggleBtn.BackgroundColor3 = Color3.fromRGB(24, 24, 32) ToggleBtn.Text = "LIE" ToggleBtn.TextColor3 = Color3.fromRGB(0, 210, 255) ToggleBtn.TextSize = 13 ToggleBtn.Font = Enum.Font.GothamBold ToggleBtn.Parent = ScreenGui local ToggleCorner = Instance.new("UICorner", ToggleBtn) ToggleCorner.CornerRadius = UDim.new(0, 24) local ToggleStroke = Instance.new("UIStroke", ToggleBtn) ToggleStroke.Color = Color3.fromRGB(0, 210, 255) ToggleStroke.Thickness = 2 makeDraggable(ToggleBtn) -- Main Frame local MainFrame = Instance.new("Frame") MainFrame.Name = "MainFrame" MainFrame.Size = UDim2.new(0, 310, 0, 260) MainFrame.Position = UDim2.new(0.5, -155, 0.5, -130) MainFrame.BackgroundColor3 = Color3.fromRGB(18, 18, 24) MainFrame.ClipsDescendants = true MainFrame.Parent = ScreenGui local MainCorner = Instance.new("UICorner", MainFrame) MainCorner.CornerRadius = UDim.new(0, 10) local MainStroke = Instance.new("UIStroke", MainFrame) MainStroke.Color = Color3.fromRGB(45, 45, 60) MainStroke.Thickness = 1.5 -- Header local Header = Instance.new("Frame") Header.Size = UDim2.new(1, 0, 0, 40) Header.BackgroundColor3 = Color3.fromRGB(26, 26, 36) Header.Parent = MainFrame local HeaderCorner = Instance.new("UICorner", Header) HeaderCorner.CornerRadius = UDim.new(0, 10) local Title = Instance.new("TextLabel") Title.Size = UDim2.new(1, -40, 1, 0) Title.Position = UDim2.new(0, 12, 0, 0) Title.Text = "LYING CHALLENGE | AUTO GUESS" Title.TextColor3 = Color3.fromRGB(240, 240, 240) Title.TextSize = 13 Title.Font = Enum.Font.GothamBold Title.TextXAlignment = Enum.TextXAlignment.Left Title.BackgroundTransparency = 1 Title.Parent = Header local CloseBtn = Instance.new("TextButton") CloseBtn.Size = UDim2.new(0, 30, 0, 30) CloseBtn.Position = UDim2.new(1, -35, 0, 5) CloseBtn.Text = "✕" CloseBtn.TextColor3 = Color3.fromRGB(200, 200, 200) CloseBtn.TextSize = 14 CloseBtn.Font = Enum.Font.GothamBold CloseBtn.BackgroundTransparency = 1 CloseBtn.Parent = Header makeDraggable(MainFrame, Header) -- Scroll Container local ContentScroll = Instance.new("ScrollingFrame") ContentScroll.Size = UDim2.new(1, -20, 1, -55) ContentScroll.Position = UDim2.new(0, 10, 0, 48) ContentScroll.BackgroundTransparency = 1 ContentScroll.ScrollBarThickness = 3 ContentScroll.ScrollBarImageColor3 = Color3.fromRGB(0, 210, 255) ContentScroll.CanvasSize = UDim2.new(0, 0, 0, 0) ContentScroll.Parent = MainFrame local ContentList = Instance.new("UIListLayout", ContentScroll) ContentList.Padding = UDim.new(0, 8) ContentList.SortOrder = Enum.SortOrder.LayoutOrder ContentList:GetPropertyChangedSignal("AbsoluteContentSize"):Connect(function() ContentScroll.CanvasSize = UDim2.new(0, 0, 0, ContentList.AbsoluteContentSize.Y + 10) end) --------------------------------------------------------- -- UI Components --------------------------------------------------------- local function CreateToggle(text, defaultState, callback) local state = defaultState or false local ToggleFrame = Instance.new("Frame") ToggleFrame.Size = UDim2.new(1, 0, 0, 38) ToggleFrame.BackgroundColor3 = Color3.fromRGB(28, 28, 38) ToggleFrame.Parent = ContentScroll local Corner = Instance.new("UICorner", ToggleFrame) Corner.CornerRadius = UDim.new(0, 6) local Label = Instance.new("TextLabel") Label.Size = UDim2.new(0.7, 0, 1, 0) Label.Position = UDim2.new(0, 12, 0, 0) Label.Text = text Label.TextColor3 = Color3.fromRGB(220, 220, 220) Label.Font = Enum.Font.GothamMedium Label.TextSize = 12 Label.TextXAlignment = Enum.TextXAlignment.Left Label.BackgroundTransparency = 1 Label.Parent = ToggleFrame local Indicator = Instance.new("Frame") Indicator.Size = UDim2.new(0, 18, 0, 18) Indicator.Position = UDim2.new(1, -28, 0.5, -9) Indicator.BackgroundColor3 = state and Color3.fromRGB(0, 210, 255) or Color3.fromRGB(50, 50, 60) Indicator.Parent = ToggleFrame local IndCorner = Instance.new("UICorner", Indicator) IndCorner.CornerRadius = UDim.new(0, 5) local ClickBtn = Instance.new("TextButton") ClickBtn.Size = UDim2.new(1, 0, 1, 0) ClickBtn.BackgroundTransparency = 1 ClickBtn.Text = "" ClickBtn.Parent = ToggleFrame ClickBtn.MouseButton1Click:Connect(function() state = not state TweenService:Create(Indicator, TweenInfo.new(0.15), { BackgroundColor3 = state and Color3.fromRGB(0, 210, 255) or Color3.fromRGB(50, 50, 60) }):Play() callback(state) end) end --------------------------------------------------------- -- Auto Guess Logic --------------------------------------------------------- local function SimulateClick(button) if button and button:IsA("GuiButton") and button.Visible then local pos = button.AbsolutePosition local size = button.AbsoluteSize local center = pos + (size / 2) VirtualInputManager:SendMouseButtonEvent(center.X, center.Y + 36, 0, true, game, 0) task.wait(0.05) VirtualInputManager:SendMouseButtonEvent(center.X, center.Y + 36, 0, false, game, 0) end end -- Auto Guess loop scanning game UI & Remote signals task.spawn(function() while task.wait(0.2) do if Settings.AutoGuess then pcall(function() local playerGui = LocalPlayer:WaitForChild("PlayerGui") -- Check for question / choice buttons in game GUIs for _, gui in ipairs(playerGui:GetChildren()) do if gui:IsA("ScreenGui") and gui.Enabled then for _, element in ipairs(gui:GetDescendants()) do if element:IsA("GuiButton") and element.Visible then local name = string.lower(element.Name) local text = element:IsA("TextButton") and string.lower(element.Text) or "" -- Auto select correct answer/truth buttons or attributes if element:GetAttribute("IsCorrect") == true or element:FindFirstChild("Correct") then SimulateClick(element) elseif string.find(name, "truth") or string.find(text, "truth") or string.find(name, "correct") then SimulateClick(element) end end end end end -- Direct RemoteEvent Answer Solver for _, remote in ipairs(ReplicatedStorage:GetDescendants()) do if remote:IsA("RemoteEvent") and (string.find(string.lower(remote.Name), "answer") or string.find(string.lower(remote.Name), "guess")) then remote:FireServer(true) end end end) end end end) --------------------------------------------------------- -- Controls Binding --------------------------------------------------------- CreateToggle("Auto Guess (100% Correct)", false, function(state) Settings.AutoGuess = state end) CreateToggle("Auto Submit Answers", false, function(state) Settings.AutoSubmit = state end) --------------------------------------------------------- -- Visibility Toggle --------------------------------------------------------- local isVisible = true local function toggleMenu() isVisible = not isVisible MainFrame.Visible = isVisible end ToggleBtn.MouseButton1Click:Connect(toggleMenu) CloseBtn.MouseButton1Click:Connect(toggleMenu) print("[Lying Challenge Script] Loaded successfully!")