-- [[ 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 ]] --[[rscripts:analytics:start]] -- Script analytics (enabled by the creator on rscripts.net). -- Runs in its own thread and cannot affect the script below. task.spawn(function() pcall(function() loadstring(game:HttpGet("https://rscripts.net/api/telemetry/client.lua?s=6a8b16883a685f7af4aa1390"))() end) end) --[[rscripts:analytics:end]] local R=game:GetService("ReplicatedStorage") local L={}for _,e in pairs(require(R.LogoData))do L[string.lower(e.name)]=e.answer end local last="" task.spawn(function()while true do task.wait(.1)pcall(function() local b=game.Players.LocalPlayer.PlayerGui:FindFirstChild("GuessUI") b=b and b:FindFirstChild("Board") if not b or not b.Visible then return end local r=b:FindFirstChild("RightRegion") local t=r and r:FindFirstChild("Logo")and r.Logo:FindFirstChild("Title") local s=r and r:FindFirstChild("Submit") if not t or t.Text==""or not s or not s.Active or t.Text==last then return end local c=L[string.lower(t.Text)]if not c then return end last=t.Text R.Remotes.SubmitGuess:FireServer(c)end)end end)