Advertisement
trixade

Untitled

May 19th, 2022 (edited)
673
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 4.24 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 = "ChibuHub",
  5.         Style = 3,
  6.         SizeX = 500,
  7.         SizeY = 350,
  8.         Theme = "Light",
  9.         ColorOverrides = {
  10.                 MainFrame = Color3.fromRGB(235,235,235)
  11.         }
  12. })
  13.  
  14. local Y = X.New({
  15.         Title = "1"
  16. })
  17.  
  18. local Z = X.New({
  19.         Title = "2"
  20. })
  21.  
  22. local A = Y.Button({
  23.         Text = "Kill All",
  24.         Callback = function()
  25.                 print("hello")
  26.         end,
  27.         Menu = {
  28.                 Information = function(self)
  29.                         X.Banner({
  30.                                 Text = "This function can get you banned in up-to-date servers; use at your own risk."
  31.                         })
  32.                 end
  33.         }
  34. })
  35.  
  36. local B = Y.Toggle({
  37.         Text = "I'm a switch",
  38.         Callback = function(Value)
  39.                 print(Value)
  40.         end,
  41.         Enabled = false
  42. })
  43.  
  44. local C = Y.Slider({
  45.         Text = "Slip and... you get the idea",
  46.         Callback = function(Value)
  47.                 print(Value)
  48.         end,
  49.         Min = 200,
  50.         Max = 400,
  51.         Def = 300
  52. })
  53.  
  54. local D = Y.Dropdown({
  55.         Text = "Dropping care package",
  56.         Callback = function(Value)
  57.                 print(Value)
  58.         end,
  59.         Options = {
  60.                 "Floor 1",
  61.                 "Floor 2",
  62.                 "Floor 3",
  63.                 "Floor 4",
  64.                 "Floor 5"
  65.         },
  66.         Menu = {
  67.                 Information = function(self)
  68.                         X.Banner({
  69.                                 Text = "Test alert!"
  70.                         })
  71.                 end
  72.         }
  73. })
  74.  
  75. local E = Y.ChipSet({
  76.         Text = "Chipping away",
  77.         Callback = function(ChipSet)
  78.                 table.foreach(ChipSet, function(Option, Value)
  79.                         print(Option, Value)
  80.                 end)
  81.         end,
  82.         Options = {
  83.                 ESP = true,
  84.                 TeamCheck = false,
  85.                 UselessBool = {
  86.                         Enabled = true,
  87.                         Menu = {
  88.                                 Information = function(self)
  89.                                         X.Banner({
  90.                                                 Text = "This bool has absolutely no purpose whatsoever."
  91.                                         })
  92.                                 end
  93.                         }
  94.                 }
  95.         }
  96. })
  97.  
  98. local F = Y.DataTable({
  99.         Text = "Chipping away",
  100.         Callback = function(ChipSet)
  101.                 table.foreach(ChipSet, function(Option, Value)
  102.                         print(Option, Value)
  103.                 end)
  104.         end,
  105.         Options = {
  106.                 ESP2 = true,
  107.                 TeamCheck2 = false,
  108.                 UselessBool2 = {
  109.                         Enabled = true,
  110.                         Menu = {
  111.                                 Information = function(self)
  112.                                         X.Banner({
  113.                                                 Text = "This bool ALSO has absolutely no purpose. Sorry."
  114.                                         })
  115.                                 end
  116.                         }
  117.                 }
  118.         }
  119. })
  120.  
  121. local G = Y.ColorPicker({
  122.         Text = "ESP Colour",
  123.         Default = Color3.fromRGB(0,255,110),
  124.         Callback = function(Value)
  125.                 print("RGB:", Value.R * 255, Value.G * 255, Value.B * 255)
  126.         end,
  127.         Menu = {
  128.                 Information = function(self)
  129.                         X.Banner({
  130.                                 Text = "This changes the color of your ESP."
  131.                         })
  132.                 end
  133.         }
  134. })
  135.  
  136. local H = Y.TextField({
  137.         Text = "Country",
  138.         Callback = function(Value)
  139.                 print(Value)
  140.         end,
  141.         Menu = {
  142.                 GB = function(self)
  143.                         self.SetText("GB")
  144.                 end,
  145.                 JP = function(self)
  146.                         self.SetText("JP")
  147.                 end,
  148.                 KO = function(self)
  149.                         self.SetText("KO")
  150.                 end
  151.         }
  152. })
  153.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement