--=== HIỆN TỌA ĐỘ XYZ CỦA NGƯỜI CHƠI ===-- local Players = game:GetService("Players") local player = Players.LocalPlayer -- Tạo GUI local screenGui = Instance.new("ScreenGui", player:WaitForChild("PlayerGui")) screenGui.Name = "ToaDoGUI" local label = Instance.new("TextLabel", screenGui) label.Size = UDim2.new(0, 300, 0, 50) label.Position = UDim2.new(0, 10, 0, 10) label.BackgroundTransparency = 0.5 label.BackgroundColor3 = Color3.fromRGB(0, 0, 0) label.TextColor3 = Color3.fromRGB(255, 255, 255) label.TextScaled = true label.Font = Enum.Font.SourceSansBold label.Text = "Tọa độ: đang tải..." -- Cập nhật tọa độ liên tục game:GetService("RunService").RenderStepped:Connect(function() if player.Character and player.Character:FindFirstChild("HumanoidRootPart") then local pos = player.Character.HumanoidRootPart.Position label.Text = string.format("Tọa độ: X=%.2f, Y=%.2f, Z=%.2f", pos.X, pos.Y, pos.Z) end end)