local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))() -- Fetch Game and Place Data local GameName = game:GetService("MarketplaceService"):GetProductInfo(game.PlaceId).Name local GameID = tostring(game.UniverseId) local PlaceID = tostring(game.PlaceId) -- Create the Window local Window = Rayfield:CreateWindow({ Name = "Game Info Hub", LoadingTitle = "Fetching Data...", LoadingSubtitle = "Delta Edition", ConfigurationSaving = { Enabled = false }, KeySystem = false }) -- Create Info Tab local InfoTab = Window:CreateTab("IDs & Info", 4483362458) -- Display Section InfoTab:CreateSection("Game Details") InfoTab:CreateParagraph({Title = "Game Name:", Content = GameName}) -- Place ID Section InfoTab:CreateSection("Place ID (Join/Teleport)") InfoTab:CreateParagraph({Title = "Current Place ID:", Content = PlaceID}) InfoTab:CreateButton({ Name = "Copy Place ID", Callback = function() setclipboard(PlaceID) Rayfield:Notify({ Title = "Copied!", Content = "Place ID: " .. PlaceID .. " copied to clipboard.", Duration = 3, Image = 4483362458, }) end, }) -- Universe ID Section InfoTab:CreateSection("Universe ID (Game ID)") InfoTab:CreateParagraph({Title = "Current Game ID:", Content = GameID}) InfoTab:CreateButton({ Name = "Copy Game ID", Callback = function() setclipboard(GameID) Rayfield:Notify({ Title = "Copied!", Content = "Game ID copied to clipboard.", Duration = 3, Image = 4483362458, }) end, })