Advertisement
HiDad910

abc

Oct 22nd, 2021 (edited)
1,110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 4.60 KB | None | 0 0
  1. --no skidding, give credit to all
  2.  
  3. local Material = loadstring(game:HttpGet("https://raw.githubusercontent.com/Kinlei/MaterialLua/master/Module.lua"))()
  4.  
  5. local Gui_Name = "A Legacy Time Private Server Mod GUI"
  6.  
  7. local X = Material.Load({
  8.     Title = Gui_Name,
  9.     Style = 1,
  10.     SizeX = 400,
  11.     SizeY = 450,
  12.     Theme = "Dark",
  13.     ColorOverrides = {
  14.         MainFrame = Color3.fromRGB(50,160,48)
  15.     }
  16. })
  17.  
  18. local Y = X.New({
  19.     Title = "Stands"
  20. })
  21.  
  22. local G = X.New({
  23.     Title = "Farming"
  24. })
  25.  
  26. local K = X.New({
  27.     Title = "Misc"
  28. })
  29.  
  30. local C = X.New({
  31.     Title = "Teleporting"
  32. })
  33.  
  34. local E = X.New({
  35.     Title = "Customize"
  36. })
  37.  
  38. local Z = X.New({
  39.     Title = "Info"
  40. })
  41.  
  42.  
  43.  
  44. local A = Y.Button({
  45.   Text = "Shadow The Hedgehog (Spec)",
  46.     Callback = function()
  47.       game:GetService("ReplicatedStorage").ShadowLOL:FireServer()
  48.     end
  49. })
  50.  
  51. local P = Y.Button({
  52.   Text = "Spin (Spec)",
  53.     Callback = function()
  54.       game:GetService("ReplicatedStorage").GiveSpin:FireServer()
  55.     end
  56. })
  57.  
  58. local banknote = G.Button({
  59.     Text = "Bring Banknotes",
  60.     Callback = function()
  61.       for i,v in pairs(game.workspace.Items:GetDescendants()) do
  62.         if v.Name == "Banknote" then
  63.             v.Handle.Position = game.Players.LocalPlayer.Character.HumanoidRootPart.Position
  64.         end
  65.       end
  66.     end
  67. })
  68.  
  69. local all = G.Button({
  70.     Text = "Bring All Items",
  71.     Callback = function()
  72.       for i,v in pairs(game.workspace.Items:GetDescendants()) do
  73.         if v:IsA("Tool") then
  74.             v.Handle.Position = game.Players.LocalPlayer.Character.HumanoidRootPart.Position
  75.         end
  76.       end
  77.     end
  78. })
  79.  
  80.  
  81. local teleports = C.Dropdown({
  82.     Text = "Choose a place to teleport to",
  83.       Callback = function(Value)
  84.         if Value == "Shop" then
  85.             game.Players.LocalPlayer.Character:MoveTo(Vector3.new(-3873.05, 838.149, 2144.11))
  86.         end
  87.        
  88.         if Value == "Stand Storage" then
  89.             game.Players.LocalPlayer.Character:MoveTo(Vector3.new(-4190.43, 806.497, 2390.06))
  90.         end
  91.        
  92.         if Value == "Stand Storage 2" then
  93.             game.Players.LocalPlayer.Character:MoveTo(Vector3.new(-4247.21, 1290.01, 2402.45))
  94.         end
  95.        
  96.         if Value == "BlackMarket Guy" then
  97.             game.Players.LocalPlayer.Character:MoveTo(Vector3.new(-4083.07, 805.233, 2412.56))
  98.         end
  99.            
  100.       end,
  101.      
  102.       Options = {
  103.         "Shop",
  104.        
  105.         "Stand Storage",
  106.        
  107.         "Stand Storage 2",
  108.        
  109.         "BlackMarket Guy"
  110.        
  111.       },
  112. })
  113.  
  114. local smth = K.Toggle({
  115.     Text = "Menacing Effect",
  116.     Callback = function(Value)
  117.     local args = {
  118.     [1] = Value
  119.     }
  120.  
  121.     game:GetService("ReplicatedStorage").Menacing:FireServer(unpack(args))
  122. end
  123. })
  124.  
  125. local antits = K.Toggle({
  126.     Text = "Anti TimeStop",
  127.     Callback = function(Value)
  128.     game:GetService("RunService").RenderStepped:connect(function()
  129.        if Value == true then
  130.            for _,anti_ts in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  131.                 if anti_ts:IsA("Part") then
  132.                     anti_ts.Anchored = false
  133.                 end
  134.        end
  135.         elseif Value == false then
  136.             return
  137.         end
  138.     end)
  139.        end
  140.    
  141. })
  142.  
  143. local timestope = K.Button({
  144.     Text = "ServerSided Timestop (Freezes you too)",
  145.    
  146.     Callback = function()
  147.    
  148.     local args = {
  149.     [1] = 10,
  150.     [2] = "dioova"
  151.     }
  152.    
  153.     game:GetService("ReplicatedStorage").Timestop:FireServer(unpack(args))
  154.    
  155.     end,
  156.    
  157.     Menu = {
  158.         Tip = function(self)
  159.         X.Banner({
  160.             Text = "Best used with Holy Pot Platinum or antits to move in ts."
  161.         })
  162.     end
  163.     }
  164.  
  165. })
  166.  
  167.  
  168. local O = K.Button({
  169.     Text = "Sword Skill Spam",
  170.         Callback = function()
  171.         for i = 1, 35 do
  172.            game:GetService("ReplicatedStorage").SwordSkill1:FireServer()
  173.         end
  174. end
  175. })
  176.  
  177.  
  178.  
  179.  local V = Z.Button({
  180.     Text = "Credits",
  181.  Callback = function()
  182.    X.Banner
  183.    {
  184.        Text = "Made by Killing#5530/Proxo_101, UI used is MaterialLua"
  185.    }
  186.         end            
  187.         })
  188.    
  189.     local Q = E.ColorPicker({
  190.     Text = "BackGround Colour",
  191.     Default = Default_Color,
  192.     Callback = function(Value)
  193.         game:GetService("CoreGui"):FindFirstChild(Gui_Name).MainFrame.ImageColor3 = Color3.fromRGB(Value.R * 255, Value.G * 255, Value.B * 255)
  194.     end,
  195.     Menu = {
  196.         Information = function(self)
  197.             X.Banner({
  198.                 Text = "This changes the color of the GUI BackGround."
  199.             })
  200.         end
  201.     }
  202. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement