Találtam a neten 1 srtiptet és egy garázs kaput szerettem volna vele mozgatni de amikor elindúl körbe körbe forog és csak úgy meg fel mi lehet a hiba ?
local gate1 = createObject(11327, 1774.099609375, -1889.900390625, 14.89999961853, 0, 0, 179.99450683594)
local Status = \"closed\"
function Gate1()
if (Status == \"closed\") then
openGate ()
Status = \"open\"
elseif (Status == \"open\") then
closeGate ()
Status = \"closed\"
end
end
addCommandHandler (\"gate\", Gate1)
function openGate ()
moveObject(gate1, 1327, 1774.4000244141, -1890, 18.60000038147, 0, 0, 179.99450683594)
end
function closeGate ()
moveObject(gate1, 11327, 1774.099609375, -1889.900390625, 14.89999961853, 0, 0, 179.99450683594)
end