local Players = game:GetService("Players") local Player = Players.LocalPlayer local PlayerGui = Player:WaitForChild("PlayerGui") local ScreenGui = Instance.new("ScreenGui") ScreenGui.Parent = PlayerGui ScreenGui.ResetOnSpawn = false local Frame = Instance.new("Frame") Frame.Size = UDim2.new(0, 220, 0, 100) Frame.Position = UDim2.new(0.1, 0, 0.2, 0) Frame.BackgroundColor3 = Color3.new(0.12, 0.12, 0.12) Frame.Active = true Frame.Draggable = true Frame.Parent = ScreenGui local Title = Instance.new("TextLabel") Title.Size = UDim2.new(1, 0, 0, 30) Title.BackgroundTransparency = 1 Title.Text = "PlaceID Copier" Title.TextColor3 = Color3.new(1,1,1) Title.TextSize = 16 Title.Font = Enum.Font.SourceSansBold Title.Parent = Frame local CopyBtn = Instance.new("TextButton") CopyBtn.Size = UDim2.new(0.8, 0, 0, 40) CopyBtn.Position = UDim2.new(0.1, 0, 0.45, 0) CopyBtn.BackgroundColor3 = Color3.new(0.2, 0.6, 1) CopyBtn.Text = "Copy PlaceId" CopyBtn.TextColor3 = Color3.new(1,1,1) CopyBtn.TextSize = 15 CopyBtn.Parent = Frame CopyBtn.MouseButton1Click:Connect(function() setclipboard(tostring(game.PlaceId)) CopyBtn.Text = "✅ Copied" task.wait(1) CopyBtn.Text = "Copy PlaceId" end)