Advertisement
otorp2

roblox touch brick player position

Jan 21st, 2018
439
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. script.Parent.Touched:connect(function(hit)
  2. local torso = hit.Parent:FindFirstChild("Torso") or hit.Parent:FindFirstChild("UpperTorso")
  3. if torso then
  4. print(torso.Position)
  5. end
  6. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement