Can someone help me? I made a script but its not working:
http://prnt.sc/gjebbn
Well i understand your question but then i looked at your screenshot and I didn't understand what you were doing so im just gonna tell you how to change the position of the player
well first you want to set a variable
local teleto = game.workspace.part -- that an example of where the part is located in game explorer
well now that that is done we need to get the actual teleporting done Assuming that the script is located within the part that teleports you this is how i would teleport the player
script.Parent.Touched:connect(function(hit) if hit.Parent:FindFirstChild('humanoid') then hit.Parent.HumanoidRootPart.CFrame = CFrame.new(teleto.position) end end)