MADE BY centerepic (THREAD)
FEATURE:
- ANTI RECOIL
SCRIPTS: [2]
SYN X 2 & OTHER SCRIPT EXE
local Camera = workspace.CurrentCamera
local ControlModule = game:GetService("Players").LocalPlayer.PlayerScripts.PlayerModule.ControlModule
local oldnewindex; oldnewindex = hookmetamethod(game, "__newindex", function(self, index, value)
if not checkcaller() and self == Camera and tostring(index) == 'CFrame' then
if getcallingscript() ~= ControlModule then
return
end
end
return oldnewindex(self, index, value)
end)
SYN X 3
local Camera = workspace.CurrentCamera
local ControlModule = game:GetService("Players").LocalPlayer.PlayerScripts.PlayerModule.ControlModule
local oldnewindex; oldnewindex = syn.oth.hook(getrawmetatable(game).__newindex, function(...)
local Args = {...}
if not checkcaller() and Args[1] == Camera and tostring(Args[2]) == "CFrame" and getcallingscript() ~= ControlModule then
return
end
return oldnewindex(...)
end)