This repository was archived by the owner on Feb 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathSupport Checker.lua
More file actions
29 lines (23 loc) · 1.44 KB
/
Support Checker.lua
File metadata and controls
29 lines (23 loc) · 1.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
--// Variables
local Title = "Exunys Developer"
local StarterGui = game:GetService("StarterGui")
--// Functions
local function SendNotification(TitleArg, DescriptionArg, DurationArg)
StarterGui:SetCore("SendNotification", {
Title = TitleArg,
Text = DescriptionArg,
Duration = DurationArg
})
end
--// Main
if not writefile then SendNotification(Title, "Your exploit does not support writefile()", 3) return end
if not isfile then SendNotification(Title, "Your exploit does not support isfile()", 3) return end
if not delfile then SendNotification(Title, "Your exploit does not support delfile()", 3) return end
if not makefolder then SendNotification(Title, "Your exploit does not support makefolder()", 3) return end
if not isfolder then SendNotification(Title, "Your exploit does not support isfolder()", 3) return end
if not delfolder then SendNotification(Title, "Your exploit does not support delfolder()", 3) return end
if not syn then SendNotification(Title, "Your exploit does not support the library syn", 3) return end
if not syn.queue_on_teleport then SendNotification(Title, "Your exploit does not support syn.queue_on_teleport()", 3) return end
if not Drawing then SendNotification(Title, "Your exploit does not support the library Drawing", 3) return end
if not getgenv then SendNotification(Title, "Your exploit does not support getgenv()", 3) return end
SendNotification(Title, "Your exploit supports this script.", 3)