local player = game.Players.LocalPlayer local gui = Instance.new("ScreenGui") gui.Name = "H4CKBO1112025" gui.ResetOnSpawn = false gui.Parent = player:WaitForChild("PlayerGui") local frame = Instance.new("Frame") frame.Size = UDim2.new(0, 460, 0, 280) frame.Position = UDim2.new(0.3, 0, 0.35, 0) frame.BackgroundColor3 = Color3.fromRGB(0, 0, 0) frame.BackgroundTransparency = 0 frame.BorderSizePixel = 3 frame.BorderColor3 = Color3.fromRGB(0, 0, 255) frame.Active = true frame.Draggable = true frame.Parent = gui local title = Instance.new("TextLabel") title.Text = "H4CKBO111 2025" title.Size = UDim2.new(0, 200, 0, 25) title.Position = UDim2.new(1, -200, 0, 0) title.BackgroundTransparency = 1 title.TextColor3 = Color3.fromRGB(255, 255, 255) title.Font = Enum.Font.GothamBold title.TextScaled = true title.ZIndex = 2 title.Parent = frame local decal = Instance.new("ImageLabel") decal.Size = UDim2.new(0, 160, 0, 170) decal.Position = UDim2.new(1, -150, 0, -45) decal.BackgroundTransparency = 1 decal.Image = "rbxassetid://82476264300037" decal.Rotation = 15 decal.ZIndex = 1 decal.ImageTransparency = 0 decal.Parent = frame local input = Instance.new("TextBox") input.Size = UDim2.new(1, -10, 0.6, -10) input.Position = UDim2.new(0, 5, 0.1, 0) input.BackgroundColor3 = Color3.fromRGB(0, 0, 0) input.BackgroundTransparency = 0 input.BorderSizePixel = 2 input.BorderColor3 = Color3.fromRGB(0, 0, 255) input.TextColor3 = Color3.fromRGB(255, 255, 255) input.ClearTextOnFocus = false input.MultiLine = true input.TextWrapped = true input.Font = Enum.Font.Code input.TextSize = 14 input.TextXAlignment = Enum.TextXAlignment.Left input.TextYAlignment = Enum.TextYAlignment.Top input.ZIndex = 2 input.Text = "" input.Parent = frame local placeholder = Instance.new("TextLabel") placeholder.Text = "Execute scripts here!" placeholder.Size = UDim2.new(0, 200, 0, 20) placeholder.Position = UDim2.new(0, 10, 0, 8) placeholder.BackgroundTransparency = 1 placeholder.TextColor3 = Color3.fromRGB(180, 180, 180) placeholder.Font = Enum.Font.Code placeholder.TextSize = 14 placeholder.TextXAlignment = Enum.TextXAlignment.Left placeholder.ZIndex = 3 placeholder.Parent = input input:GetPropertyChangedSignal("Text"):Connect(function() if input.Text ~= "" then placeholder.Visible = false else placeholder.Visible = true end end) local execBtn = Instance.new("TextButton") execBtn.Text = "Execute" execBtn.Size = UDim2.new(0, 100, 0, 40) execBtn.Position = UDim2.new(0, 5, 1, -45) execBtn.BackgroundColor3 = Color3.fromRGB(0, 0, 0) execBtn.BackgroundTransparency = 0.25 execBtn.BorderColor3 = Color3.fromRGB(0, 0, 255) execBtn.TextColor3 = Color3.fromRGB(0, 0, 255) execBtn.Font = Enum.Font.SourceSansBold execBtn.TextScaled = true execBtn.Parent = frame local clearBtn = Instance.new("TextButton") clearBtn.Text = "Clear" clearBtn.Size = UDim2.new(0, 80, 0, 40) clearBtn.Position = UDim2.new(0, 110, 1, -45) clearBtn.BackgroundColor3 = Color3.fromRGB(0, 0, 0) clearBtn.BackgroundTransparency = 0.25 clearBtn.BorderColor3 = Color3.fromRGB(0, 0, 255) clearBtn.TextColor3 = Color3.fromRGB(0, 0, 255) clearBtn.Font = Enum.Font.SourceSansBold clearBtn.TextScaled = true clearBtn.Parent = frame local resetBtn = Instance.new("TextButton") resetBtn.Text = "Reset Character" resetBtn.Size = UDim2.new(0, 150, 0, 40) resetBtn.Position = UDim2.new(1, -155, 1, -45) resetBtn.BackgroundColor3 = Color3.fromRGB(0, 0, 0) resetBtn.BackgroundTransparency = 0.25 resetBtn.BorderColor3 = Color3.fromRGB(0, 0, 255) resetBtn.TextColor3 = Color3.fromRGB(0, 0, 255) resetBtn.Font = Enum.Font.SourceSansBold resetBtn.TextScaled = true resetBtn.Parent = frame local rtypeBtn = Instance.new("TextButton") rtypeBtn.Text = "Convert to R6" rtypeBtn.Size = UDim2.new(0, 150, 0, 40) rtypeBtn.Position = UDim2.new(1, -155, 1, -90) rtypeBtn.BackgroundColor3 = Color3.fromRGB(0, 0, 0) rtypeBtn.BackgroundTransparency = 0.25 rtypeBtn.BorderColor3 = Color3.fromRGB(0, 0, 255) rtypeBtn.TextColor3 = Color3.fromRGB(0, 0, 255) rtypeBtn.Font = Enum.Font.SourceSansBold rtypeBtn.TextScaled = true rtypeBtn.Parent = frame local function notify(title, text) game.StarterGui:SetCore("SendNotification", { Title = title, Text = text, Duration = 5 }) end execBtn.MouseButton1Click:Connect(function() local code = input.Text local stripped = code:gsub("\".-\"", ""):gsub("\'.-\'", "") stripped = stripped:gsub("%-%-.-\n", "") local lowerCode = stripped:lower() if lowerCode:match("require%s*%(") then notify("Execution Blocked", "Hey! You can't execute require scripts here!") return end if lowerCode:match("loadstring%s*%(") then notify("Execution Blocked", "Hey! You can't execute loadstring() here!") return end local func, err = loadstring(code) if func then local success, runtimeErr = pcall(func) if success then notify("Success", "Script executed successfully!") else notify("Script Error", runtimeErr) end else notify("Compilation Error", err) end end) clearBtn.MouseButton1Click:Connect(function() input.Text = "" end) resetBtn.MouseButton1Click:Connect(function() local char = player.Character if char then char:BreakJoints() end end) rtypeBtn.MouseButton1Click:Connect(function() local success, err = pcall(function() local char = player.Character if not char or not char:FindFirstChild("Humanoid") then notify("Error", "Character not found!") return end if char:WaitForChild("Humanoid").RigType == Enum.HumanoidRigType.R15 then local desc = game.Players:GetHumanoidDescriptionFromUserId(player.CharacterAppearanceId) local newAvatar = game.Players:CreateHumanoidModelFromDescription(desc, Enum.HumanoidRigType.R6) newAvatar:SetPrimaryPartCFrame(char.PrimaryPart.CFrame) for _, j in pairs(char:GetChildren()) do if j.ClassName == "Tool" or (j:IsA("LuaSourceContainer") and j.Name ~= "Animate") then j.Parent = newAvatar end end newAvatar.Name = player.Name player.Character = newAvatar newAvatar.Parent = workspace notify("Success", "Successfully converted to R6!") else notify("Info", "You are already using R6.") end end) if not success then notify("Error", "R6 conversion failed: " .. tostring(err)) end end) notify("H4CKBO111 2025", "Script executed successfully!")