This isnt a forums for people making you scripts, this is intended for people to help you with your scirpts. Atleast give it a shot. If you really want to be lazy, then heres the source code to do it:
1 | script.Parent.MouseButton 1 Click:connect( function (player) |
If you are actually extremely lazy then 1) laziness will get you no where. 2) here you go:
1 | local position = positionthatyouwantplayerstoteleporto |
4 | script.Parent.MouseButton 1 Click:connect( function (player) |
5 | player.Character.Torso.CFrame = CFrame.new(position) |
6 | print 'player teleported' |