local markerPosition = {x = 1871.34949, y = -2413.27100, z = 13} -- Markerin X, Y, Z koordinatları
local teleportPosition = {x = 150, y = 250, z = 10} -- Işınlanacak X, Y, Z koordinatları
local marker = createMarker(markerPosition.x, markerPosition.y, markerPosition.z, "cylinder", 1.2, 255, 255, 0, 150) -- Marker Oluşturma
addEventHandler("onMarkerHit", marker,
function(hitElement, matchingDimension)
if getElementType(hitElement) == "player" and matchingDimension then
setElementPosition(hitElement, teleportPosition.x, teleportPosition.y, teleportPosition.z)
-- outputChatBox("Başarıyla ışınlandınız!", hitElement, 0, 255, 0) -- Chate mesaj atmasını istersen baştaki iki çizgiyi sil.
end
end
)