i need a script that can detect a players position and tell the player it.
To get the players position, you can use their HumanoidRootPart, because every rig type, whether R6 or R15, uses the HumanoidRootPart.
local player = game:GetService("Players"):FindFirstChild("Player1") -- Replace Player1 With the player your trying to find the Position for. local character = player.Character or player.CharacterAdded:Wait() local root = character:WaitForChild("HumanoidRootPart") print(root.CFrame.p)