コンテンツへスキップ
動作中

Universal Alignment Keys without Emote Wheel

POPooPoo515 閲覧数Keys2026年7月19日
共有
Universal Alignment Keys without Emote Wheel

スクリプトコード

Lua
if _G.AlignCon then _G.AlignCon:Disconnect() _G.AlignCon = nil end

local UIS = game:GetService("UserInputService")
local CAS = game:GetService("ContextActionService")
local SG = game:GetService("StarterGui")
local WS = game:GetService("Workspace")

task.spawn(function()
	local ok = false
	while not ok do
		ok = pcall(function() SG:SetCoreGuiEnabled(Enum.CoreGuiType.EmotesMenu, false) end)
		task.wait(0.2)
	end
end)

CAS:BindActionAtPriority("BlockEmote", function() return Enum.ContextActionResult.Sink end, false, Enum.ContextActionPriority.High.Value + 1000, Enum.KeyCode.Period)

local function round(v, m) return math.round(v / m) * m end

local function snap(dir)
	local cam = WS.CurrentCamera
	if not cam then return end

	local cx, cy, cz = cam.CFrame:ToOrientation()
	local deg = math.deg(cy)
	local grid = round(deg, 45)
	local target

	if dir == "L" then
		target = grid + 45
		if target <= deg + 0.1 then target = target + 45 end
	elseif dir == "R" then
		target = grid - 45
		if target >= deg - 0.1 then target = target - 45 end
	end

	cam.CFrame = CFrame.new(cam.CFrame.Position) * CFrame.fromOrientation(cx, math.rad(target), cz)
end

_G.AlignCon = UIS.InputBegan:Connect(function(input)
	if input.KeyCode == Enum.KeyCode.Comma then
		snap("L")
	elseif input.KeyCode == Enum.KeyCode.Period then
		snap("R")
	end
end)

説明

for people too lazy to master flicking to do wallhops or just for those low effort troll tower games. gives you alignment keys in r6 games even with emote wheels that are, of course, useless in r6 games.. use < >, like always. **burn in hell emote wheel**😡😡😡

コメント (0)

会話に参加するにはログインしてください

  • 最初のコメントを投稿しましょう。

よくある質問

Universal Alignment Keys without Emote Wheelスクリプトはどう使いますか?
上のスクリプトコードをコピーし、RobloxでKeysに参加して、エグゼキューターに貼り付けて実行してください。スクリプトが動くとすぐに機能が有効になります。
Universal Alignment Keys without Emote Wheelはまだ動作しますか?
はい。Universal Alignment Keys without Emote Wheelは現在「動作中」とマークされています(最終更新: 2026年8月23日)。Robloxのアップデートで動かなくなった場合は、更新版をお待ちください。
Universal Alignment Keys without Emote Wheelに対応するエグゼキューターは?
このスクリプトはほとんどの人気Robloxエグゼキューターで動作します。お使いのデバイス向けの信頼できる無料または有料エグゼキューターを見つけるには、エグゼキューターページをご覧ください。