Advertisement
BlinkingStars

Support Checker

Jun 6th, 2023
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.46 KB | Gaming | 0 0
  1. --// Variables
  2.  
  3. local Title = "Exunys Developer"
  4. local StarterGui = game:GetService("StarterGui")
  5.  
  6. --// Functions
  7.  
  8. local function SendNotification(TitleArg, DescriptionArg, DurationArg)
  9.     StarterGui:SetCore("SendNotification", {
  10.         Title = TitleArg,
  11.         Text = DescriptionArg,
  12.         Duration = DurationArg
  13.     })
  14. end
  15.  
  16. --// Main
  17.  
  18. if not writefile then SendNotification(Title, "Your exploit does not support writefile()", 3) return end
  19. if not isfile then SendNotification(Title, "Your exploit does not support isfile()", 3) return end
  20. if not delfile then SendNotification(Title, "Your exploit does not support delfile()", 3) return end
  21. if not makefolder then SendNotification(Title, "Your exploit does not support makefolder()", 3) return end
  22. if not isfolder then SendNotification(Title, "Your exploit does not support isfolder()", 3) return end
  23. if not delfolder then SendNotification(Title, "Your exploit does not support delfolder()", 3) return end
  24. if not syn then SendNotification(Title, "Your exploit does not support the library syn", 3) return end
  25. if not syn.queue_on_teleport then SendNotification(Title, "Your exploit does not support syn.queue_on_teleport()", 3) return end
  26. if not Drawing then SendNotification(Title, "Your exploit does not support the library Drawing", 3) return end
  27. if not getgenv then SendNotification(Title, "Your exploit does not support getgenv()", 3) return end
  28.  
  29. SendNotification(Title, "Your exploit supports this script.", 3)
Tags: Roblox lua
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement