Advertisement
qnidnqwid

Universal Scripts

Mar 19th, 2024 (edited)
26
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 11.31 KB | Gaming | 0 0
  1. local CoreGui = game:GetService("StarterGui")
  2. local Players = game:GetService("Players")
  3.  
  4. local function isNumber(str)
  5.     if tonumber(str) ~= nil or str == 'inf' then
  6.         return true
  7.     end
  8. end
  9.  
  10. getgenv().HitboxSize = 15
  11. getgenv().HitboxTransparency = 0.9
  12.  
  13. getgenv().HitboxStatus = false
  14. getgenv().TeamCheck = false
  15.  
  16. getgenv().Walkspeed = game:GetService("Players").LocalPlayer.Character.Humanoid.WalkSpeed
  17. getgenv().Jumppower = game:GetService("Players").LocalPlayer.Character.Humanoid.JumpPower
  18.  
  19. getgenv().TPSpeed = 3
  20. getgenv().TPWalk = false
  21.  
  22. --// UI
  23.  
  24. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/Vcsk/UI-Library/main/Source/MyUILib(Unamed).lua"))();
  25. local Window = Library:Create("Made by bruhmoments#5852")
  26.  
  27. local altKeyDown = false
  28. game:GetService("UserInputService").InputBegan:Connect(function(input)
  29.     if input.KeyCode == Enum.KeyCode.LeftAlt then
  30.         altKeyDown = true
  31.     end
  32. end)
  33.  
  34. game:GetService("UserInputService").InputEnded:Connect(function(input)
  35.     if input.KeyCode == Enum.KeyCode.LeftAlt then
  36.         altKeyDown = false
  37.     end
  38. end)
  39.  
  40. game:GetService("UserInputService").InputBegan:Connect(function(input)
  41.     if input.KeyCode == Enum.KeyCode.LeftAlt and altKeyDown then
  42.         Library:ToggleUI()
  43.     end
  44. end)
  45.  
  46. local HomeTab = Window:Tab("Home","rbxassetid://10888331510")
  47. local PlayerTab = Window:Tab("Players","rbxassetid://12296135476")
  48. local VisualTab = Window:Tab("Visuals","rbxassetid://12308581351")
  49. local OtherGamesTab = Window:Tab("Other Games", "rbxassetid://...")
  50.  
  51. HomeTab:InfoLabel("only works on some games!")
  52.  
  53. HomeTab:Section("Settings")
  54.  
  55. HomeTab:TextBox("Hitbox Size", function(value)
  56.     getgenv().HitboxSize = value
  57. end)
  58.  
  59. HomeTab:TextBox("Hitbox Transparency", function(number)
  60.     getgenv().HitboxTransparency = number
  61. end)
  62.  
  63. HomeTab:Section("Main")
  64.  
  65. HomeTab:Toggle("Status: ", function(state)
  66.     getgenv().HitboxStatus = state
  67.     game:GetService('RunService').RenderStepped:Connect(function()
  68.         if HitboxStatus == true and TeamCheck == false then
  69.             for i,v in next, game:GetService('Players'):GetPlayers() do
  70.                 if v.Name ~= game:GetService('Players').LocalPlayer.Name then
  71.                     pcall(function()
  72.                         v.Character.HumanoidRootPart.Size = Vector3.new(HitboxSize, HitboxSize, HitboxSize)
  73.                         v.Character.HumanoidRootPart.Transparency = HitboxTransparency
  74.                         v.Character.HumanoidRootPart.BrickColor = BrickColor.new("Really black")
  75.                         v.Character.HumanoidRootPart.Material = "Neon"
  76.                         v.Character.HumanoidRootPart.CanCollide = false
  77.                     end)
  78.                 end
  79.             end
  80.         elseif HitboxStatus == true and TeamCheck == true then
  81.             for i,v in next, game:GetService('Players'):GetPlayers() do
  82.                 if game:GetService('Players').LocalPlayer.Team ~= v.Team then
  83.                     pcall(function()
  84.                         v.Character.HumanoidRootPart.Size = Vector3.new(HitboxSize, HitboxSize, HitboxSize)
  85.                         v.Character.HumanoidRootPart.Transparency = HitboxTransparency
  86.                         v.Character.HumanoidRootPart.BrickColor = BrickColor.new("Really black")
  87.                         v.Character.HumanoidRootPart.Material = "Neon"
  88.                         v.Character.HumanoidRootPart.CanCollide = false
  89.                     end)
  90.                 end
  91.             end
  92.         else
  93.             for i,v in next, game:GetService('Players'):GetPlayers() do
  94.                 if v.Name ~= game:GetService('Players').LocalPlayer.Name then
  95.                     pcall(function()
  96.                         v.Character.HumanoidRootPart.Size = Vector3.new(2,2,1)
  97.                         v.Character.HumanoidRootPart.Transparency = 1
  98.                         v.Character.HumanoidRootPart.BrickColor = BrickColor.new("Medium stone grey")
  99.                         v.Character.HumanoidRootPart.Material = "Plastic"
  100.                         v.Character.HumanoidRootPart.CanCollide = false
  101.                     end)
  102.                 end
  103.             end
  104.         end
  105.     end)
  106. end)
  107.  
  108. HomeTab:Toggle("Team Check", function(state)
  109.     getgenv().TeamCheck = state
  110. end)
  111.  
  112. HomeTab:Keybind("Toggle UI", Enum.KeyCode.LeftAlt, function()
  113.     Library:ToggleUI()
  114. end)
  115.  
  116. PlayerTab:TextBox("WalkSpeed", function(value)
  117.     getgenv().Walkspeed = value
  118.     pcall(function()
  119.         game:GetService("Players").LocalPlayer.Character.Humanoid.WalkSpeed = value
  120.     end)
  121. end)
  122.  
  123. PlayerTab:Toggle("Loop WalkSpeed", function(state)
  124.     getgenv().loopW = state
  125.     game:GetService("RunService").Heartbeat:Connect(function()
  126.         if loopW == true then
  127.             pcall(function()
  128.                 game:GetService("Players").LocalPlayer.Character.Humanoid.WalkSpeed = Walkspeed
  129.             end)
  130.         end
  131.     end)
  132. end)
  133.  
  134. PlayerTab:TextBox("JumpPower", function(value)
  135.     getgenv().Jumppower = value
  136.     pcall(function()
  137.         game:GetService("Players").LocalPlayer.Character.Humanoid.JumpPower = value
  138.     end)
  139. end)
  140.  
  141. PlayerTab:Toggle("Loop JumpPower", function(state)
  142.     getgenv().loopJ = state
  143.     game:GetService("RunService").Heartbeat:Connect(function()
  144.         if loopJ == true then
  145.             pcall(function()
  146.                 game:GetService("Players").LocalPlayer.Character.Humanoid.JumpPower = Jumppower
  147.             end)
  148.         end
  149.     end)
  150. end)
  151.  
  152. PlayerTab:TextBox("TP Speed", function(value)
  153.     getgenv().TPSpeed = value
  154. end)
  155.  
  156. PlayerTab:Toggle("TP Walk", function(s)
  157.     getgenv().TPWalk = s
  158.     local hb = game:GetService("RunService").Heartbeat
  159.     local player = game:GetService("Players")
  160.     local lplr = player.LocalPlayer
  161.     local chr = lplr.Character
  162.     local hum = chr and chr:FindFirstChildWhichIsA("Humanoid")
  163.     while getgenv().TPWalk and hb:Wait() and chr and hum and hum.Parent do
  164.         if hum.MoveDirection.Magnitude > 0 then
  165.             if getgenv().TPSpeed and isNumber(getgenv().TPSpeed) then
  166.                 chr:TranslateBy(hum.MoveDirection * tonumber(getgenv().TPSpeed))
  167.             else
  168.                 chr:TranslateBy(hum.MoveDirection)
  169.             end
  170.         end
  171.     end
  172. end)
  173.  
  174. PlayerTab:Slider("Fov", game.Workspace.CurrentCamera.FieldOfView, 120, function(v)
  175.     game.Workspace.CurrentCamera.FieldOfView = v
  176. end)
  177.  
  178. PlayerTab:Toggle("Noclip", function(s)
  179.     getgenv().Noclip = s
  180.     game:GetService("RunService").Heartbeat:Connect(function()
  181.         if Noclip == true then
  182.             game:GetService("RunService").Stepped:Wait()
  183.             game.Players.LocalPlayer.Character.Head.CanCollide = false
  184.             game.Players.LocalPlayer.Character.Torso.CanCollide = false
  185.         end
  186.     end)
  187. end)
  188.  
  189. PlayerTab:Toggle("Infinite Jump", function(s)
  190.     getgenv().InfJ = s
  191.     game:GetService("UserInputService").JumpRequest:Connect(function()
  192.         if InfJ == true then
  193.             game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass('Humanoid'):ChangeState("Jumping")
  194.         end
  195.     end)
  196. end)
  197.  
  198. PlayerTab:Button("Rejoin", function()
  199.     game:GetService("TeleportService"):Teleport(game.PlaceId, game:GetService("Players").LocalPlayer)
  200. end)
  201.  
  202. VisualTab:InfoLabel("Wait 3-10 seconds")
  203.  
  204. VisualTab:Toggle("Character Highlight", function(state)
  205.     getgenv().enabled = state --Toggle on/off
  206.     getgenv().filluseteamcolor = true --Toggle fill color using player team color on/off
  207.     getgenv().outlineuseteamcolor = true --Toggle outline color using player team color on/off
  208.     getgenv().fillcolor = Color3.new(0, 0, 0) --Change fill color, no need to edit if using team color
  209.     getgenv().outlinecolor = Color3.new(1, 1, 1) --Change outline color, no need to edit if using team color
  210.     getgenv().filltrans = 0.5 --Change fill transparency
  211.     getgenv().outlinetrans = 0.5 --Change outline transparency
  212.  
  213.     loadstring(game:HttpGet("https://raw.githubusercontent.com/Vcsk/RobloxScripts/main/Highlight-ESP.lua"))()
  214. end)
  215.  
  216. VisualTab:Button("Fps and Ping Boost", function(state)
  217. loadstring(game:HttpGet"https://pastebin.com/raw/yuQQQ27h")()
  218. end)
  219.  
  220. VisualTab:Button("Health Bar", function(state)
  221. loadstring(game:HttpGet"https://pastebin.com/raw/7YQG1p4K")()
  222. end)
  223.  
  224.  
  225. -- Adding the FPS Booster Button
  226. local FPSBoostButton = HomeTab:Button("Boost FPS", function()
  227.     loadstring(game:HttpGet("https://pastebin.com/raw/Ae3RtCyE"))()
  228. end)
  229.  
  230. if game.PlaceId == 3082002798 then
  231.     local GamesTab = Window:Tab("Games","rbxassetid://15426471035")
  232.     GamesTab:InfoLabel("Game: "..game:GetService("MarketplaceService"):GetProductInfo(game.PlaceId).Name)
  233.     GamesTab:Button("No Cooldown", function()
  234.         for i, v in pairs(game:GetService('ReplicatedStorage')['Shared_Modules'].Tools:GetDescendants()) do
  235.             if v:IsA('ModuleScript') then
  236.                 local Module = require(v)
  237.                 Module.DEBOUNCE = 0
  238.             end
  239.         end
  240.     end)
  241. end
  242.  
  243. -- Adding buttons for other games
  244.  
  245. -- Button for Aimlock V2 script
  246. OtherGamesTab:Button("Aimlock V2", function()
  247.     loadstring(game:HttpGet("https://gitlab.com/te4224/Scripts/-/raw/main/Universal%20Aimbot%20N%20Esp/v2/main.lua"))()
  248. end)
  249.  
  250. -- Button for 3m1 Fast Dash Script
  251. OtherGamesTab:Button("3m1 Fast Dash", function()
  252.     loadstring(game:HttpGet("https://raw.githubusercontent.com/OriginPoints/m1r/refs/heads/main/m1r.lua"))()
  253. end)
  254.  
  255. -- Button for tsb auto block
  256. OtherGamesTab:Button("Tsb Auto Block", function()
  257.     loadstring(game:HttpGet("https://raw.githubusercontent.com/Cyborg883/TSB/refs/heads/main/CombatGui"))()
  258. end)
  259.  
  260. -- Button for Fake Lag Script
  261. OtherGamesTab:Button("Fake Lag", function()
  262.     loadstring(game:HttpGet"https://pastebin.com/raw/snyg1ukv")()
  263. end)
  264.  
  265. -- Button for Infinite Yield Script
  266. OtherGamesTab:Button("Infinite Yield", function()
  267.     loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
  268. end)
  269.  
  270. -- Button for Tsb Cheat Hub
  271. OtherGamesTab:Button("Tsb Cheat Hub", function()
  272.     loadstring(game:HttpGet("https://raw.githubusercontent.com/Reallyools/Reallyools/refs/heads/main/TRASH-HUB/TSB%20SCRIPT"))()
  273. end)
  274.  
  275. -- Button for Insta Kill Tsb
  276. OtherGamesTab:Button("Insta Kill Tsb", function()
  277.     loadstring(game:HttpGet("https://raw.githubusercontent.com/Reallyools/Reallyools/refs/heads/main/TSB%20SCRIPTS-Auto%20Void%20Killv2"))()
  278. end)
  279.  
  280. -- Button for Tempest Hub Tsb
  281. OtherGamesTab:Button("Tempest Hub Tsb", function()
  282.     loadstring(game:HttpGet("https://raw.githubusercontent.com/10tempest01/tempest-hub/refs/heads/main/Launcher.lua"))()
  283. end)
  284.  
  285. -- Button for Sols RNG script
  286. OtherGamesTab:Button("Sols RNG", function()
  287.     loadstring(game:HttpGet("https://raw.githubusercontent.com/Looser3itx/Hmmmmmmmmmmmmmmmmmmmmmmmmmmmm/main/loader.lua"))()
  288. end)
  289.  
  290. -- Button for Blade Ball script
  291. OtherGamesTab:Button("Blade Ball", function()
  292.     loadstring(game:HttpGet("https://raw.githubusercontent.com/Code4Zaaa/X7Project/main/Game/AutoParryOnly"))()
  293. end)
  294.  
  295. -- Button for Blox Fruits script
  296. OtherGamesTab:Button("Blox Fruits", function()
  297.     loadstring(game:HttpGet("https://raw.githubusercontent.com/REDzHUB/BloxFruits/main/redz9999"))()
  298. end)
  299.  
  300. -- Button for Vape script (Bedwars)
  301. OtherGamesTab:Button("Vape (Bedwars)", function()
  302.     loadstring(game:HttpGet("https://raw.githubusercontent.com/7GrandDadPGN/VapeV4ForRoblox/main/NewMainScript.lua", true))()
  303. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement