-- ================================================ -- R'Sw IA EXPLOITING v6.2 - Final -- ================================================ local Players = game:GetService("Players") local UserInputService = game:GetService("UserInputService") local player = Players.LocalPlayer local playerGui = player:WaitForChild("PlayerGui") local screenGui = Instance.new("ScreenGui") screenGui.Name = "RSwExploitingV62" screenGui.ResetOnSpawn = false screenGui.Parent = playerGui local mainFrame = Instance.new("Frame") mainFrame.Size = UDim2.new(0.93, 0, 0.8, 0) mainFrame.Position = UDim2.new(0.035, 0, 0.08, 0) mainFrame.BackgroundColor3 = Color3.fromRGB(15, 15, 15) mainFrame.BackgroundTransparency = 0.15 mainFrame.Parent = screenGui Instance.new("UICorner", mainFrame).CornerRadius = UDim.new(0, 18) local title = Instance.new("TextLabel") title.Size = UDim2.new(1, 0, 0, 52) title.BackgroundColor3 = Color3.fromRGB(110, 0, 0) title.Text = "🔥 R'Sw IA EXPLOITING v6.2 🔥" title.TextColor3 = Color3.new(1,1,1) title.TextScaled = true title.Font = Enum.Font.GothamBold title.Parent = mainFrame Instance.new("UICorner", title).CornerRadius = UDim.new(0, 18) local chatFrame = Instance.new("ScrollingFrame") chatFrame.Size = UDim2.new(1, -16, 1, -145) chatFrame.Position = UDim2.new(0, 8, 0, 57) chatFrame.BackgroundTransparency = 1 chatFrame.ScrollBarThickness = 6 chatFrame.Parent = mainFrame local layout = Instance.new("UIListLayout") layout.Padding = UDim.new(0, 8) layout.SortOrder = Enum.SortOrder.LayoutOrder layout.Parent = chatFrame local inputBox = Instance.new("TextBox") inputBox.Size = UDim2.new(1, -16, 0, 52) inputBox.Position = UDim2.new(0, 8, 1, -60) inputBox.BackgroundColor3 = Color3.fromRGB(25, 25, 25) inputBox.PlaceholderText = "Ej: Hazme un script de God Mode" inputBox.Text = "" inputBox.TextColor3 = Color3.new(1,1,1) inputBox.TextScaled = true inputBox.Font = Enum.Font.Gotham inputBox.Parent = mainFrame Instance.new("UICorner", inputBox).CornerRadius = UDim.new(0, 14) -- === CREDITOS === local credits = Instance.new("TextLabel") credits.Size = UDim2.new(1, 0, 0, 20) credits.Position = UDim2.new(0, 0, 1, -22) credits.BackgroundTransparency = 1 credits.Text = "Hecho por ueu9195 = 2 cuenta MoDeRHAv" credits.TextColor3 = Color3.fromRGB(180, 180, 180) credits.TextScaled = true credits.Font = Enum.Font.Gotham credits.TextTransparency = 0.4 credits.Parent = mainFrame -- Movible local dragging = false title.InputBegan:Connect(function(inp) if inp.UserInputType == Enum.UserInputType.MouseButton1 or inp.UserInputType == Enum.UserInputType.Touch then dragging = true local startPos = mainFrame.Position local dragStart = inp.Position local conn = 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 mainFrame.Position = UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y) end end) inp.Changed:Connect(function() if inp.UserInputState == Enum.UserInputState.End then dragging = false conn:Disconnect() end end) end end) local function addMessage(sender, text, color) local f = Instance.new("Frame") f.Size = UDim2.new(1, -10, 0, 0) f.AutomaticSize = Enum.AutomaticSize.Y f.BackgroundTransparency = 1 f.Parent = chatFrame local l = Instance.new("TextLabel") l.Size = UDim2.new(1,0,0,0) l.AutomaticSize = Enum.AutomaticSize.Y l.BackgroundTransparency = 1 l.TextWrapped = true l.TextXAlignment = Enum.TextXAlignment.Left l.Text = sender .. ": " .. text l.TextColor3 = color l.TextSize = 15 l.Font = Enum.Font.Gotham l.Parent = f chatFrame.CanvasPosition = Vector2.new(0, chatFrame.AbsoluteCanvasSize.Y) end local function createCodeBlock(code: string) local frame = Instance.new("Frame") frame.Size = UDim2.new(1, -12, 0, 0) frame.AutomaticSize = Enum.AutomaticSize.Y frame.BackgroundColor3 = Color3.fromRGB(10, 10, 10) frame.Parent = chatFrame Instance.new("UICorner", frame).CornerRadius = UDim.new(0, 12) local box = Instance.new("TextBox") box.Size = UDim2.new(1, -16, 0, 0) box.AutomaticSize = Enum.AutomaticSize.Y box.Position = UDim2.new(0, 8, 0, 8) box.BackgroundTransparency = 1 box.Text = code box.TextColor3 = Color3.fromRGB(0, 255, 140) box.TextXAlignment = Enum.TextXAlignment.Left box.TextWrapped = true box.Font = Enum.Font.Code box.TextSize = 14 box.Parent = frame local btnFrame = Instance.new("Frame") btnFrame.Size = UDim2.new(1, 0, 0, 38) btnFrame.BackgroundTransparency = 1 btnFrame.Parent = frame local copy = Instance.new("TextButton") copy.Size = UDim2.new(0.48, 0, 1, 0) copy.Position = UDim2.new(0.02, 0, 0, 0) copy.BackgroundColor3 = Color3.fromRGB(0, 140, 0) copy.Text = "Copiar" copy.TextColor3 = Color3.new(1,1,1) copy.Font = Enum.Font.GothamBold copy.Parent = btnFrame Instance.new("UICorner", copy).CornerRadius = UDim.new(0, 8) local exec = Instance.new("TextButton") exec.Size = UDim2.new(0.48, 0, 1, 0) exec.Position = UDim2.new(0.52, 0, 0, 0) exec.BackgroundColor3 = Color3.fromRGB(200, 80, 0) exec.Text = "Ejecutar Ahora" exec.TextColor3 = Color3.new(1,1,1) exec.Font = Enum.Font.GothamBold exec.Parent = btnFrame Instance.new("UICorner", exec).CornerRadius = UDim.new(0, 8) copy.MouseButton1Click:Connect(function() setclipboard(code) copy.Text = "¡Copiado!" task.wait(1.5) copy.Text = "Copiar" end) exec.MouseButton1Click:Connect(function() local success, err = pcall(loadstring(code)) if success then exec.Text = "¡Ejecutado!" exec.BackgroundColor3 = Color3.fromRGB(0, 170, 0) else exec.Text = "Error" warn("R'Sw Error:", err) end task.wait(2) exec.Text = "Ejecutar Ahora" exec.BackgroundColor3 = Color3.fromRGB(200, 80, 0) end) end local function getResponse(msg: string) msg = msg:lower() if msg:find("god mode") or msg:find("godmode") or msg:find("no morirme") or msg:find("inmortal") then local code = '-- God Mode by R\'Sw IA\nlocal player = game.Players.LocalPlayer\n\nlocal function applyGod(char)\n local hum = char:WaitForChild("Humanoid")\n hum.MaxHealth = math.huge\n hum.Health = math.huge\n hum:SetStateEnabled(Enum.HumanoidStateType.Dead, false)\nend\n\nplayer.CharacterAdded:Connect(applyGod)\nif player.Character then applyGod(player.Character) end\nprint("God Mode Activado por R\'Sw")' addMessage("R'Sw", "Script de God Mode generado:", Color3.fromRGB(0, 255, 140)) createCodeBlock(code) return "God Mode completo. Te mantiene vivo incluso al morir." end if msg:find("walkspeed") or msg:find("ws ") then local speed = tonumber(msg:match("%d+")) or 100 local code = string.format('-- WalkSpeed by R\'Sw\nlocal speed = %s\nlocal player = game.Players.LocalPlayer\n\nwhile task.wait() do\n local char = player.Character\n if char and char:FindFirstChild("Humanoid") then\n char.Humanoid.WalkSpeed = speed\n end\nend', speed) addMessage("R'Sw", "Script de WalkSpeed generado:", Color3.fromRGB(0, 255, 140)) createCodeBlock(code) return "WalkSpeed en "..speed.." listo." end if msg:find("fly") or msg:find("volar") then local code = '-- Fly Script by R\'Sw IA\nlocal player = game.Players.LocalPlayer\nlocal UIS = game:GetService("UserInputService")\nlocal flying = true\nlocal speed = 60\n\nlocal bv = Instance.new("BodyVelocity")\nbv.MaxForce = Vector3.new(1e5, 1e5, 1e5)\nlocal bg = Instance.new("BodyGyro")\nbg.MaxTorque = Vector3.new(1e5, 1e5, 1e5)\n\nlocal function startFly()\n local char = player.Character\n if not char then return end\n local root = char:WaitForChild("HumanoidRootPart")\n bv.Parent = root\n bg.Parent = root\n \n while flying and task.wait() do\n local cam = workspace.CurrentCamera\n local move = Vector3.new()\n if UIS:IsKeyDown(Enum.KeyCode.W) then move += cam.CFrame.LookVector end\n if UIS:IsKeyDown(Enum.KeyCode.S) then move -= cam.CFrame.LookVector end\n if UIS:IsKeyDown(Enum.KeyCode.A) then move -= cam.CFrame.RightVector end\n if UIS:IsKeyDown(Enum.KeyCode.D) then move += cam.CFrame.RightVector end\n if UIS:IsKeyDown(Enum.KeyCode.Space) then move += Vector3.new(0,1,0) end\n if UIS:IsKeyDown(Enum.KeyCode.LeftControl) then move -= Vector3.new(0,1,0) end\n \n bv.Velocity = move * speed\n end\nend\n\nstartFly()\nprint("Fly Activado - WASD + Space")' addMessage("R'Sw", "Script de Fly generado:", Color3.fromRGB(0, 255, 140)) createCodeBlock(code) return "Fly mejorado listo." end return "Entendido. Dime claramente qué script quieres (God Mode, Fly, WalkSpeed, Noclip, etc) y te lo genero con botón de ejecución." end local function send() if inputBox.Text == "" then return end local text = inputBox.Text addMessage("Tú", text, Color3.fromRGB(255,255,255)) task.wait(0.7) local resp = getResponse(text) addMessage("R'Sw IA", resp, Color3.fromRGB(0, 255, 130)) inputBox.Text = "" end inputBox.FocusLost:Connect(function(enter) if enter then send() end end) task.wait(0.5) addMessage("R'Sw IA Exploiting", "v6.2 lista con tus créditos.\nPrueba diciendo:\n- Hazme un script de God Mode\n- Dame script de fly\n- Walkspeed 200", Color3.fromRGB(255, 60, 60)) print("✅ R'Sw IA Exploiting v6.2 cargada - Hecho por ueu9195")