Skip to content
Open
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
03f717e
new command: disablevehiclecamera and anti env leak
loadstring1 Oct 16, 2025
8779f33
update anti env leak
loadstring1 Oct 16, 2025
04162d8
remove anti env leak (it sucks lol)
loadstring1 Oct 16, 2025
592aaf0
sync with latest IY version
loadstring1 Oct 16, 2025
20c1901
improve disablevehiclecamera and enablevehiclecamera
loadstring1 Oct 16, 2025
961ebe8
Merge branch 'EdgeIY:master' into master
loadstring1 Oct 20, 2025
ff178a0
replace filtergc with getgc and replace wait() with task.wait()
loadstring1 Oct 20, 2025
cb9cedf
fixed my mistake of removing new chat commands by accident
loadstring1 Oct 20, 2025
1616179
fixes and changes
loadstring1 Oct 20, 2025
0faa30a
fix teleportservice hookfunction being detectable
loadstring1 Oct 20, 2025
853c6af
fix teleportservice hook again (my bad i fucked up)
loadstring1 Oct 20, 2025
01dd9c9
fix antichatlogs
loadstring1 Oct 20, 2025
e12df2d
revert task.wait update
loadstring1 Oct 21, 2025
a558b80
make gravity return to game's default gravity
loadstring1 Oct 23, 2025
fda8764
Merge branch 'EdgeIY:master' into master
loadstring1 Nov 5, 2025
db39100
only new commands
loadstring1 Nov 9, 2025
8bcc473
shorter aliases
loadstring1 Nov 9, 2025
8947a3a
Merge branch 'onlynewcommand' of https://github.com/loadstring1/infin…
loadstring1 Nov 15, 2025
0edbcbf
Update source
loadstring1 Nov 15, 2025
05345a0
fix description
loadstring1 Nov 15, 2025
a1f7741
Merge branch 'master' into onlynewcommand
loadstring1 Mar 10, 2026
45aa86e
remove unintentional duplicates
loadstring1 Mar 10, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 51 additions & 0 deletions source
Original file line number Diff line number Diff line change
Expand Up @@ -4885,6 +4885,8 @@ CMDs[#CMDs + 1] = {NAME = 'addplugin / plugin [name]', DESC = 'Add a plugin via
CMDs[#CMDs + 1] = {NAME = 'removeplugin / deleteplugin [name]', DESC = 'Remove a plugin via command'}
CMDs[#CMDs + 1] = {NAME = 'reloadplugin [name]', DESC = 'Reloads a plugin'}
CMDs[#CMDs + 1] = {NAME = 'addallplugins / loadallplugins', DESC = 'Adds all available plugins from the workspace folder'}
CMDs[#CMDs + 1] = {NAME = 'disablevehiclecamera / dvc / novcam', DESC = 'Disables annoying vehicle camera that makes you lose control of your camera'}
CMDs[#CMDs + 1] = {NAME = 'enablevehiclecamera / evc / restorevcam', DESC = 'Enables vehicle camera back after disabling it'}
-- wait()

for i = 1, #CMDs do
Expand Down Expand Up @@ -13009,6 +13011,55 @@ addcmd('unautokeypress',{'noautokeypress','unkeypress','nokeypress'},function(ar
if cancelAutoKeyPress then cancelAutoKeyPress:Disconnect() end
end)

local vehiclecamfuncs={}
local function callActivateCameraController()
local realCamTable,activatecam

for i,v in getgc(true) do
if activatecam and realCamTable then break end
if typeof(activatecam)~="function" and typeof(v)=="function" and isourclosure(v)==false and debug.info(v,"n")=="ActivateCameraController" then
activatecam=v
elseif typeof(realCamTable)~="table" and typeof(v)=="table" and typeof(rawget(v,"activeCameraController"))=="table" then
realCamTable=v
end
end

if typeof(activatecam)~="function" or typeof(realCamTable)~="table" then
return
end

activatecam(realCamTable,Enum.ComputerCameraMovementMode.Classic)
end

addcmd('disablevehiclecamera',{"dvc","novcam","disablevcam"},function(args, speaker)
if typeof(getgc)~="function" or typeof(hookfunction)~="function" or typeof(isourclosure)~="function" or typeof(iscclosure)~="function" then
return notify('Disable Vehicle Camera',"Your exploit doesn't have the ability to use this command (missing getgc, hookfunction, isourclosure, iscclosure)")
end

for i,v in getgc(false) do
if typeof(v)~="function" or isourclosure(v) or iscclosure(v) or debug.info(v,"n")~="ShouldUseVehicleCamera" then continue end
table.insert(vehiclecamfuncs,v)
hookfunction(v,function()return false end)
end
callActivateCameraController()

notify('Disable Vehicle Camera',"Vehicle camera successfully disabled.")
end)

addcmd('enablevehiclecamera',{"evc","vehiclecam","restorevcam"},function(args, speaker)
if typeof(getgc)~="function" or typeof(restorefunction)~="function" then
return notify('Enable Vehicle Camera',"Your exploit doesn't have the ability to use this command (missing getgc, restorefunction)")
end

for i,v in vehiclecamfuncs do
pcall(restorefunction,v)
end
table.clear(vehiclecamfuncs)
callActivateCameraController()

notify('Enable Vehicle Camera',"Vehicle camera successfully enabled.")
end)

addcmd('addplugin',{'plugin'},function(args, speaker)
addPlugin(getstring(1, args))
end)
Expand Down