Advertisement
Zwiebelle1301706

UniversalUI-ByLeon|VXPloits

Jun 7th, 2024 (edited)
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 9.48 KB | None | 0 0
  1. _G.Main = {}
  2.  
  3. function _G.Main:New(Title)
  4.    
  5.     local ScreenGui = Instance.new("ScreenGui")
  6.     local Frame = Instance.new("Frame")
  7.     local Frame_2 = Instance.new("Frame")
  8.     local UIListLayout = Instance.new("UIListLayout")
  9.     local TextLabel = Instance.new("TextLabel")
  10.  
  11.     ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  12.     ScreenGui.ResetOnSpawn = false
  13.  
  14.     Frame.Parent = ScreenGui
  15.     Frame.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
  16.     Frame.Position = UDim2.new(0.05382213, 0, 0.274487466, 0)
  17.     Frame.Size = UDim2.new(0, 397, 0, 395)
  18.  
  19.     Frame_2.Parent = Frame
  20.     Frame_2.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
  21.     Frame_2.BorderSizePixel = 0
  22.     Frame_2.Position = UDim2.new(0.0624024495, 0, 0.145615742, 0)
  23.     Frame_2.Size = UDim2.new(0, 347, 0, 298)
  24.  
  25.     UIListLayout.Parent = Frame_2
  26.     UIListLayout.HorizontalAlignment = Enum.HorizontalAlignment.Center
  27.     UIListLayout.SortOrder = Enum.SortOrder.LayoutOrder
  28.     UIListLayout.Padding = UDim.new(0, 10)
  29.  
  30.     TextLabel.Parent = Frame
  31.     TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  32.     TextLabel.BackgroundTransparency = 1.000
  33.     TextLabel.LayoutOrder = 5
  34.     TextLabel.Position = UDim2.new(0.152442604, 0, 0.0205405708, 0)
  35.     TextLabel.Size = UDim2.new(0, 274, 0, 40)
  36.     TextLabel.ZIndex = 2
  37.     TextLabel.Font = Enum.Font.GothamBold
  38.     TextLabel.Text = Title
  39.     TextLabel.TextColor3 = Color3.fromRGB(232, 232, 232)
  40.     TextLabel.TextScaled = true
  41.     TextLabel.TextSize = 14.000
  42.     TextLabel.TextWrapped = true
  43.  
  44.     local function MVMBOL_fake_script()
  45.         local script = Instance.new('LocalScript', Frame)
  46.  
  47.         script.Parent.Active = true
  48.         script.Parent.Draggable = true
  49.     end
  50.     coroutine.wrap(MVMBOL_fake_script)()
  51.    
  52.     _G.Frame = {}
  53.    
  54.     function _G.Frame:Button(Name,Call)
  55.        
  56.         local TextButton = Instance.new("TextButton")
  57.        
  58.         TextButton.Parent = Frame_2
  59.         TextButton.BackgroundColor3 = Color3.fromRGB(45, 45, 45)
  60.         TextButton.BorderSizePixel = 0
  61.         TextButton.Size = UDim2.new(0, 200, 0, 50)
  62.         TextButton.Font = Enum.Font.SourceSansBold
  63.         TextButton.Text = Name
  64.         TextButton.TextColor3 = Color3.fromRGB(235, 235, 235)
  65.         TextButton.TextScaled = true
  66.         TextButton.TextSize = 14.000
  67.         TextButton.TextWrapped = true
  68.        
  69.         TextButton.MouseButton1Click:Connect(function()
  70.            
  71.             pcall(Call)
  72.            
  73.         end)
  74.        
  75.     end
  76.    
  77.     return _G.Frame
  78.    
  79. end
  80.  
  81. --Script Here
  82.  
  83. local Frame1 = _G.Main:New("UniversalUI | - >by leon / VXPLOItS .gg/cWwnhVXZ3k")
  84.  
  85. Frame1:Button("Super Speed",function()
  86.     game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 78
  87. end)
  88.  
  89. Frame1:Button("Super jump",function()
  90.     game.Players.LocalPlayer.Character.Humanoid.JumpPower = 120
  91. end)
  92.  
  93. Frame1:Button("Low GFX - Boost FPS",function()
  94.     local lightning = game:GetService("Lighting")
  95.  
  96.         lightning.GlobalShadows = false
  97.         for i,v in pairs(workspace:GetDescendants()) do
  98.             if v:IsA("BasePart") then
  99.                 v.Material = Enum.Material.Plastic
  100.             end
  101.         end
  102.         local Model = workspace
  103.         local ClassTypes = {
  104.             "Decal",
  105.             "Texture"
  106.         }
  107.    
  108.         for _, v in ipairs(workspace:GetDescendants()) do
  109.             if table.find(ClassTypes, v.ClassName) then
  110.                 print(v.ClassName)
  111.                 v:Destroy()
  112.             end
  113.         end
  114. end)
  115.  
  116. Frame1:Button("Noclip [NO FLOAT]",function()
  117.     local Workspace = game:GetService("Workspace")
  118. local CoreGui = game:GetService("CoreGui")
  119. local Players = game:GetService("Players")
  120. local Noclip = Instance.new("ScreenGui")
  121. local BG = Instance.new("Frame")
  122. local Title = Instance.new("TextLabel")
  123. local Toggle = Instance.new("TextButton")
  124. local StatusPF = Instance.new("TextLabel")
  125. local Status = Instance.new("TextLabel")
  126. local Credit = Instance.new("TextLabel")
  127. local Plr = Players.LocalPlayer
  128. local Clipon = false
  129.  
  130. Noclip.Name = "Noclip"
  131. Noclip.Parent = game.CoreGui
  132.  
  133. BG.Name = "BG"
  134. BG.Parent = Noclip
  135. BG.BackgroundColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  136. BG.BorderColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  137. BG.BorderSizePixel = 2
  138. BG.Position = UDim2.new(0.149479166, 0, 0.82087779, 0)
  139. BG.Size = UDim2.new(0, 210, 0, 127)
  140. BG.Active = true
  141. BG.Draggable = true
  142.  
  143. Title.Name = "Title"
  144. Title.Parent = BG
  145. Title.BackgroundColor3 = Color3.new(0.266667, 0.00392157, 0.627451)
  146. Title.BorderColor3 = Color3.new(0.180392, 0, 0.431373)
  147. Title.BorderSizePixel = 2
  148. Title.Size = UDim2.new(0, 210, 0, 33)
  149. Title.Font = Enum.Font.Highway
  150. Title.Text = "Noclip"
  151. Title.TextColor3 = Color3.new(1, 1, 1)
  152. Title.FontSize = Enum.FontSize.Size32
  153. Title.TextSize = 30
  154. Title.TextStrokeColor3 = Color3.new(0.180392, 0, 0.431373)
  155. Title.TextStrokeTransparency = 0
  156.  
  157. Toggle.Parent = BG
  158. Toggle.BackgroundColor3 = Color3.new(0.266667, 0.00392157, 0.627451)
  159. Toggle.BorderColor3 = Color3.new(0.180392, 0, 0.431373)
  160. Toggle.BorderSizePixel = 2
  161. Toggle.Position = UDim2.new(0.152380958, 0, 0.374192119, 0)
  162. Toggle.Size = UDim2.new(0, 146, 0, 36)
  163. Toggle.Font = Enum.Font.Highway
  164. Toggle.FontSize = Enum.FontSize.Size28
  165. Toggle.Text = "Toggle"
  166. Toggle.TextColor3 = Color3.new(1, 1, 1)
  167. Toggle.TextSize = 25
  168. Toggle.TextStrokeColor3 = Color3.new(0.180392, 0, 0.431373)
  169. Toggle.TextStrokeTransparency = 0
  170.  
  171. StatusPF.Name = "StatusPF"
  172. StatusPF.Parent = BG
  173. StatusPF.BackgroundColor3 = Color3.new(1, 1, 1)
  174. StatusPF.BackgroundTransparency = 1
  175. StatusPF.Position = UDim2.new(0.314285725, 0, 0.708661377, 0)
  176. StatusPF.Size = UDim2.new(0, 56, 0, 20)
  177. StatusPF.Font = Enum.Font.Highway
  178. StatusPF.FontSize = Enum.FontSize.Size24
  179. StatusPF.Text = "Status:"
  180. StatusPF.TextColor3 = Color3.new(1, 1, 1)
  181. StatusPF.TextSize = 20
  182. StatusPF.TextStrokeColor3 = Color3.new(0.333333, 0.333333, 0.333333)
  183. StatusPF.TextStrokeTransparency = 0
  184. StatusPF.TextWrapped = true
  185.  
  186. Status.Name = "Status"
  187. Status.Parent = BG
  188. Status.BackgroundColor3 = Color3.new(1, 1, 1)
  189. Status.BackgroundTransparency = 1
  190. Status.Position = UDim2.new(0.580952346, 0, 0.708661377, 0)
  191. Status.Size = UDim2.new(0, 56, 0, 20)
  192. Status.Font = Enum.Font.Highway
  193. Status.FontSize = Enum.FontSize.Size14
  194. Status.Text = "off"
  195. Status.TextColor3 = Color3.new(0.666667, 0, 0)
  196. Status.TextScaled = true
  197. Status.TextSize = 14
  198. Status.TextStrokeColor3 = Color3.new(0.180392, 0, 0.431373)
  199. Status.TextWrapped = true
  200. Status.TextXAlignment = Enum.TextXAlignment.Left
  201.  
  202. Credit.Name = "Credit"
  203. Credit.Parent = BG
  204. Credit.BackgroundColor3 = Color3.new(1, 1, 1)
  205. Credit.BackgroundTransparency = 1
  206. Credit.Position = UDim2.new(0.195238099, 0, 0.866141737, 0)
  207. Credit.Size = UDim2.new(0, 128, 0, 17)
  208. Credit.Font = Enum.Font.SourceSans
  209. Credit.FontSize = Enum.FontSize.Size18
  210. Credit.Text = "Created by VXPloits"
  211. Credit.TextColor3 = Color3.new(1, 1, 1)
  212. Credit.TextSize = 16
  213. Credit.TextStrokeColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  214. Credit.TextStrokeTransparency = 0
  215. Credit.TextWrapped = true
  216.  
  217. Toggle.MouseButton1Click:connect(function()
  218.  if Status.Text == "off" then
  219.   Clipon = true
  220.   Status.Text = "on"
  221.   Status.TextColor3 = Color3.new(0,185,0)
  222.   Stepped = game:GetService("RunService").Stepped:Connect(function()
  223.    if not Clipon == false then
  224.     for a, b in pairs(Workspace:GetChildren()) do
  225.                 if b.Name == Plr.Name then
  226.                 for i, v in pairs(Workspace[Plr.Name]:GetChildren()) do
  227.                 if v:IsA("BasePart") then
  228.                 v.CanCollide = false
  229.                 end end end end
  230.    else
  231.     Stepped:Disconnect()
  232.    end
  233.   end)
  234.  elseif Status.Text == "on" then
  235.   Clipon = false
  236.   Status.Text = "off"
  237.   Status.TextColor3 = Color3.new(170,0,0)
  238.  end
  239. end)
  240. end)
  241.  
  242. Frame1:Button("Load Infinite Yield & DarkDex",function()
  243.     wait()
  244.     print("Loading IY & DexExoplorer")
  245.     wait()
  246.     loadstring(game:HttpGet("https://raw.githubusercontent.com/Babyhamsta/RBLX_Scripts/main/Universal/BypassedDarkDexV3.lua", true))()
  247.     wait(5)
  248.     loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
  249.     print("Done")
  250. end)
  251.  
  252. Frame1:Button("FLING ALL!!",function()
  253.     wait()
  254.     print("FLING")
  255.     wait()
  256.     loadstring(game:HttpGet("https://pastebin.com/raw/zqyDSUWX"))()
  257.     wait(5)
  258.     print("Done")
  259. end)
  260.  
  261. Frame1:Button("Full BRIGHT",function()
  262.  pcall(function()
  263.     local lighting = game:GetService("Lighting");
  264.     lighting.Ambient = Color3.fromRGB(255, 255, 255);
  265.     lighting.Brightness = 1;
  266.     lighting.FogEnd = 1e10;
  267.     for i, v in pairs(lighting:GetDescendants()) do
  268.         if v:IsA("BloomEffect") or v:IsA("BlurEffect") or v:IsA("ColorCorrectionEffect") or v:IsA("SunRaysEffect") then
  269.             v.Enabled = false;
  270.         end;
  271.     end;
  272.     lighting.Changed:Connect(function()
  273.         lighting.Ambient = Color3.fromRGB(255, 255, 255);
  274.         lighting.Brightness = 1;
  275.         lighting.FogEnd = 1e10;
  276.     end);
  277.     spawn(function()
  278.         local character = game:GetService("Players").LocalPlayer.Character;
  279.         while wait() do
  280.             repeat wait() until character ~= nil;
  281.             if not character.HumanoidRootPart:FindFirstChildWhichIsA("PointLight") then
  282.                 local headlight = Instance.new("PointLight", character.HumanoidRootPart);
  283.                 headlight.Brightness = 1;
  284.                 headlight.Range = 60;
  285.             end;
  286.         end;
  287.     end);
  288. end)
  289. end)
  290.  
  291. Frame1:Button("INF JUMP | AKA - FLY !",function()
  292.     wait()
  293.     print("FLING")
  294.     wait()
  295.         game:GetService("UserInputService").JumpRequest:connect(function()
  296.         game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping")  
  297.     end)
  298.     wait(5)
  299.     print("Done")
  300. end)
  301.  
  302. return _G.Main
  303.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement