http://www.roblox.com/Bloxy-Platform-HUGE-UPDATE-place?id=141925189
When I touch the teleport
Teleport started...
then this happens.
Teleport failed, insufficient privileges or target place does not exist.
What exact privileges do I need? Because the place exists, this is the place it is linked to.
http://www.roblox.com/PlaceItem.aspx?id=146981796&seoname=Bloxy-Platform-Level-01
Here is the script just in-case.
local PlaceID = script.Parent.ID.Value function onTouched(hit) character = hit.Parent print('5') if character then game:GetService("TeleportService"):Teleport(PlaceID, character) end end script.Parent.Touched:connect(onTouched)
You have to have the value equal to the id of the place, and give it to the Teleport method as a number.
For this you can use tonumber.
game:GetService("TeleportService"):Teleport(tonumber(PlaceID), character)