Advertisement
Unknown_ExploiterYT

Gun Mod GUI For Jailbreak

Mar 5th, 2021
426
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.29 KB | None | 0 0
  1. local Material = loadstring(game:HttpGet("https://raw.githubusercontent.com/Kinlei/MaterialLua/master/Module.lua"))()
  2.  
  3. local X = Material.Load({
  4. Title = "Jailbreak Guns",
  5. Style = 3,
  6. SizeX = 500,
  7. SizeY = 350,
  8. Theme = "Dark",
  9. })
  10.  
  11. local WeaponConfigs = game:GetService("ReplicatedStorage").Game.ItemConfig:GetChildren()
  12. for Idx, Module in next, WeaponConfigs do
  13. if Module:IsA("ModuleScript") then
  14. local Y = X.New({
  15. Title = Module.Name
  16. })
  17. local __req = require(Module)
  18. for k,v in next, __req do
  19. if typeof(v) == "number" then
  20. Y.Slider({
  21. Text = tostring(k),
  22. Callback = function(Value)
  23. __req[k] = Value or v
  24. end,
  25. Min = math.floor(v / 5),
  26. Max = math.floor(v * 5),
  27. Def = v
  28. })
  29. elseif typeof(v) == "boolean" then
  30. Y.Toggle({
  31. Text = tostring(k),
  32. Callback = function(Value)
  33. __req[k] = Value or v
  34. end,
  35. Enabled = v
  36. })
  37. end
  38. end
  39. end
  40. if Idx == 10 then break end
  41. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement