-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGGFgunmods2.lua
More file actions
22 lines (22 loc) · 924 Bytes
/
GGFgunmods2.lua
File metadata and controls
22 lines (22 loc) · 924 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
-- variant 2 for shit sploits like solara/xeno, etc. ; also require exists in xeno, but when I tried to change a function with it, it gave me a error, due to the level of the executor being low.
while true do task.wait()
local player = game.Players.LocalPlayer
local item = workspace:FindFirstChild(player.Name):FindFirstChildOfClass("Tool")
if item then
local config = item:FindFirstChild("Configuration")
if config then
if config:FindFirstChild("reloadTime") then
config.reloadTime.Value = 0
end
if config:FindFirstChild("FireRate") then
config.FireRate.Value = 0
end
if config:FindFirstChild("recoil") then
config.recoil.Value = 0
end
if config:FindFirstChild("isAuto") then
config.isAuto.Value = true
end
end
end
end