local LeftShift_pressed = false
return function (self, event)
local key = self:RedirectKey(event.key)
if (key == KeyboardKey.DownArrow) then
self.SystemInputs[_FuncKeySystemType.Down] = true
elseif (key == KeyboardKey.UpArrow) then
self.SystemInputs[_FuncKeySystemType.Up] = true
elseif (key == KeyboardKey.LeftArrow) then
self.SystemInputs[_FuncKeySystemType.Left] = true
elseif (key == KeyboardKey.RightArrow) then
self.SystemInputs[_FuncKeySystemType.Right] = true
elseif (key == KeyboardKey.Escape) then
self.SystemInputs[_FuncKeySystemType.Esc] = true
else
-- Your existing code for handling other keys
-- ...
if LeftShift_pressed then
LeftShift_pressed = false
end
end
if KeyboardKey.X == key then -- 텔 단축키
LeftShift_pressed = true
elseif LeftShift_pressed then
local currentPosition = _UserService.LocalPlayer.TransformComponent.WorldPosition
local newXPosition, newYPosition
if KeyboardKey.RightArrow == key then
newXPosition = currentPosition.x + tpxy
newYPosition = currentPosition.y + tpxy
elseif KeyboardKey.LeftArrow == key then
newXPosition = currentPosition.x - tpxy
newYPosition = currentPosition.y + tpxy
elseif KeyboardKey.UpArrow == key then
newXPosition = currentPosition.x - tpxy
newYPosition = currentPosition.y - tpxy
elseif KeyboardKey.DownArrow == key then
newXPosition = currentPosition.x + tpxy
newYPosition = currentPosition.y - tpxy
end
local newPosition = Vector2(newXPosition, newYPosition)
_UserService.LocalPlayer.MovementComponent:SetWorldPosition(newPosition)
end
-- Your existing code for handling other keys
-- ...
end
이거 어디다 넣어야 돼요? ㅠㅠ
제목 | 작성자 | 작성일 | 조회 | |
---|---|---|---|---|
공지 | 게시판 이용 안내+128 | 10-20 | 17059 | |
58369 | 14:45 | 82 | ||
58368 | 07:41 | 352 | ||
58367 | 03:33 | 238 | ||
58366 | 03:33 | 216 | ||
58365 | 11-24 | 401 | ||
58364 | 11-24 | 521 | ||
58363 | 11-24 | 749 | ||
58362 | 11-23 | 786 | ||
58361 | 11-23 | 649 | ||
58360 | 11-23 | 624 | ||
58359 | 11-23 | 787 | ||
58358 | 11-23 | 884 | ||
58357 | 11-23 | 907 | ||
58356 | 11-23 | 734 | ||
58355 | 11-23 | 813 | ||
58354 | 11-22 | 1089 | ||
58353 | 11-22 | 980 | ||
58352 | 아르테일 매크로+1 | 11-22 | 992 | |
58351 | 11-22 | 1029 |
댓글4
내 거기에 넣어
ㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋ
Input
형해결함?