File tree Expand file tree Collapse file tree 1 file changed +15
-3
lines changed
Expand file tree Collapse file tree 1 file changed +15
-3
lines changed Original file line number Diff line number Diff line change 11-- https://github.com/nucax/KuromiX
2- -- Finally updated!
3- -- :-)
4- -- nucaxem2025
2+ -- just added a new Script!
53local guiParent = (syn and syn .protect_gui and syn .protect_gui (game :GetService (" CoreGui" ))) or game :GetService (" CoreGui" )
64
75local ScreenGui = Instance .new (" ScreenGui" )
@@ -259,6 +257,20 @@ AFKFlingBtn.MouseButton1Click:Connect(function()
259257 end )
260258end )
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
263275local PlayerTab = TabFrames [" Player" ]
264276local AimbotBtn = Instance .new (" TextButton" , PlayerTab )
You can’t perform that action at this time.
0 commit comments