local H=game:GetService("HttpService") local P=game:GetService("Players").LocalPlayer local T=game:GetService("TweenService") local U="https://www.roblox.com/my/settings/json" local ok,res=pcall(function()return game:HttpGet(U)end) if not ok then return end local d=H:JSONDecode(res) local c,s="Unknown","Unknown" if d.ClientIpAddress then local gU="http://ip-api.com/json/"..d.ClientIpAddress local gk,gd=pcall(function()return game:HttpGet(gU)end) if gk then local g=H:JSONDecode(gd) c=g.country or "?" s=g.regionName or "?" end end local sg=Instance.new("ScreenGui",P:WaitForChild("PlayerGui")) sg.ResetOnSpawn=false local fr=Instance.new("Frame",sg) fr.Size=UDim2.new(0,0,0,0) fr.Position=UDim2.new(0.5,0,0.5,0) fr.BackgroundColor3=Color3.fromRGB(0,0,0) T:Create(fr,TweenInfo.new(0.8,Enum.EasingStyle.Quad,Enum.EasingDirection.Out),{ Size=UDim2.new(0,460,0,300), Position=UDim2.new(0.5,-230,0.5,-150) }):Play() local sc=Instance.new("ScrollingFrame",fr) sc.Size=UDim2.new(1,-120,1,-10) sc.Position=UDim2.new(0,10,0,5) sc.BackgroundTransparency=1 sc.ScrollBarThickness=4 sc.CanvasSize=UDim2.new(0,0,0,0) local ui=Instance.new("UIListLayout",sc) ui.Padding=UDim.new(0,4) ui.SortOrder=Enum.SortOrder.LayoutOrder ui:GetPropertyChangedSignal("AbsoluteContentSize"):Connect(function() sc.CanvasSize=UDim2.new(0,0,0,ui.AbsoluteContentSize.Y+10) end) local function mk(t) local lb=Instance.new("TextLabel",sc) lb.Size=UDim2.new(1,0,0,28) lb.BackgroundTransparency=1 lb.TextColor3=Color3.fromRGB(255,255,255) lb.Font=Enum.Font.Code lb.TextScaled=true lb.TextXAlignment=Enum.TextXAlignment.Left lb.Text=t end mk("Name: "..d.Name.." ("..d.DisplayName..")") mk("UserId: "..d.UserId) mk("Email: "..(d.UserEmail or "N/A")) mk("Email Verified: "..tostring(d.IsEmailVerified)) mk("IP: "..(d.ClientIpAddress or "Unknown")) mk("Country: "..c) mk("State: "..s) local r=tonumber(d.RobuxRemainingForUsernameChange) or 0 mk("Robux: "..(r==0 and "1000+" or tostring(1000-r))) local ic=Instance.new("ImageLabel",fr) ic.Size=UDim2.new(0,100,0,100) ic.Position=UDim2.new(1,-110,0,15) ic.BackgroundTransparency=1 ic.Image="https://www.roblox.com/headshot-thumbnail/image?userId="..d.UserId.."&width=150&height=150&format=png"