"ItemLibrary",
"WeaponStats",
"Items",
"WeaponData",
"Weapons"
여기 모듈 중 하나에 후킹해서 조작하는거에여
그래서 코드는
local modulesFolder = ReplicatedStorage:FindFirstChild("Modules")
local possibleNames = {
"ItemLibrary",
"WeaponStats",
"Items",
"WeaponData",
"Weapons"
}
for _, name in ipairs(possibleNames) do
local found = modulesFolder:FindFirstChild(name)
if found then
weaponModule = found
break
end
end
weaponDataCache = require(weaponModule)
이런식으로 찾으면 되고,
후킹성공하면
weaponDataCache.Items["AK47"]
weaponDataCache.Items["Shotgun"]
weaponDataCache.Items["Knife"]
...
이런식으로 무기 찾고
stats.ShootCooldown = 0
stats.AttackCooldown = 0
stats.ReloadTime = 0.01
쿨 다운 수정하심됩니다
To embed this project on your website, copy the following code and paste it into your website's HTML: