Skip to content

Commit af9eda7

Browse files
authored
Update maingui.lua
1 parent 21e4650 commit af9eda7

File tree

1 file changed

+15
-3
lines changed

1 file changed

+15
-3
lines changed

maingui.lua

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
-- https://github.com/nucax/KuromiX
2-
-- Finally updated!
3-
-- :-)
4-
-- nucaxem2025
2+
-- just added a new Script!
53
local guiParent = (syn and syn.protect_gui and syn.protect_gui(game:GetService("CoreGui"))) or game:GetService("CoreGui")
64

75
local ScreenGui = Instance.new("ScreenGui")
@@ -259,6 +257,20 @@ AFKFlingBtn.MouseButton1Click:Connect(function()
259257
end)
260258
end)
261259

260+
-- Misc Tab - FOV Slider Button
261+
local FOVSliderBtn = Instance.new("TextButton", MiscTab)
262+
FOVSliderBtn.Size = UDim2.new(0, 200, 0, 40)
263+
FOVSliderBtn.Position = UDim2.new(0, 10, 0, 60) -- Below the AFK Fling button
264+
FOVSliderBtn.Text = "Load FOV Slider"
265+
FOVSliderBtn.BackgroundColor3 = Color3.fromRGB(180, 0, 180)
266+
FOVSliderBtn.TextColor3 = Color3.fromRGB(255, 255, 255)
267+
268+
FOVSliderBtn.MouseButton1Click:Connect(function()
269+
pcall(function()
270+
loadstring(game:HttpGet("https://raw.githubusercontent.com/nucax/FOV-Slider-Script-Roblox/main/script.lua"))()
271+
end)
272+
end)
273+
262274
-- Player Tab - Aimbot Button
263275
local PlayerTab = TabFrames["Player"]
264276
local AimbotBtn = Instance.new("TextButton", PlayerTab)

0 commit comments

Comments
 (0)