-- Delta XYZ Copier GUI local player = game.Players.LocalPlayer -- ScreenGui local gui = Instance.new("ScreenGui") gui.Name = "XYZCopier" gui.Parent = game.CoreGui -- Main Frame local frame = Instance.new("Frame") frame.Size = UDim2.new(0, 260, 0, 130) frame.Position = UDim2.new(0.5, -130, 0.5, -65) frame.BackgroundColor3 = Color3.fromRGB(30,30,30) frame.BorderSizePixel = 0 frame.Parent = gui frame.Active = true frame.Draggable = true -- Title local title = Instance.new("TextLabel") title.Size = UDim2.new(1,0,0,30) title.BackgroundTransparency = 1 title.Text = "XYZ Copier" title.TextColor3 = Color3.new(1,1,1) title.Font = Enum.Font.SourceSansBold title.TextSize = 20 title.Parent = frame -- Info Label local info = Instance.new("TextLabel") info.Size = UDim2.new(1,-20,0,30) info.Position = UDim2.new(0,10,0,40) info.BackgroundTransparency = 1 info.Text = "Stand still and press Copy" info.TextColor3 = Color3.fromRGB(200,200,200) info.Font = Enum.Font.SourceSans info.TextSize = 14 info.Parent = frame -- Copy Button local button = Instance.new("TextButton") button.Size = UDim2.new(1,-20,0,40) button.Position = UDim2.new(0,10,0,80) button.Text = "Copy XYZ" button.BackgroundColor3 = Color3.fromRGB(70,70,70) button.TextColor3 = Color3.new(1,1,1) button.Font = Enum.Font.SourceSansBold button.TextSize = 18 button.Parent = frame -- Copy function button.MouseButton1Click:Connect(function() local char = player.Character if char and char:FindFirstChild("HumanoidRootPart") then local pos = char.HumanoidRootPart.Position local xyz = string.format("Vector3.new(%.2f, %.2f, %.2f)", pos.X, pos.Y, pos.Z) pcall(function() setclipboard(xyz) end) info.Text = "Copied: " .. xyz else info.Text = "Character not found!" end end)