跳转到内容
可用

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 执行器。查看我们的执行器页面,为你的设备找到可信的免费或付费执行器。