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
| 제목 | 작성자 | 작성일 | 조회 | |
|---|---|---|---|---|
| 52226 | 03-11 | 731 | ||
| 52225 | 03-11 | 622 | ||
| 52224 | 03-11 | 800 | ||
| 52223 | 03-11 | 556 | ||
| 52222 | 03-11 | 575 | ||
| 52221 | 03-11 | 498 | ||
| 52220 | 03-11 | 513 | ||
| 52219 | 03-11 | 1055 | ||
| 52218 | 03-11 | 748 | ||
| 52217 | 03-11 | 590 | ||
| 52216 | 03-11 | 536 | ||
| 52215 | 03-11 | 658 | ||
| 52214 | 03-11 | 665 | ||
| 52213 | 03-11 | 641 | ||
| 52212 | 03-11 | 587 | ||
| 52211 | 03-11 | 687 | ||
| 52210 | 03-11 | 657 | ||
| 52209 | 03-11 | 745 | ||
| 52208 | 03-11 | 510 | ||
| 52207 | 03-11 | 957 |
댓글4
왁
이 스크립트를 어디에 추가하는걸까요?
어느 스크립트에 추가하면 되는걸까요..?
이대로 하니까 키 먹통이던데 다른 방법이 있나용? ㅠㅠ