game.Players.PlayerAdded:Connect(function(Player) Player.CharacterAdded:Connect(function(Character) UTplr = Character:WaitForChild("HumaniodRootPart") end) end)
I want to access the properties of HumaniodRootPart. It is in the characters model. I thought what I had was how you access it, but I seem to be wrong. May I have some help on figuring this out?
Thank you!
game.Players.PlayerAdded:Connect(function(Player) Player.CharacterAdded:Connect(function(Character) local HRP = Character:WaitForChild("HumaniodRootPart") print(HRP.CFrame) end) end)