Advertisement
Lither_Yt

Scripts

Jul 25th, 2023 (edited)
13,067
1
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 18.26 KB | None | 1 0
  1.  
  2. da hood: loadstring(game:HttpGetAsync("https://raw.githubusercontent.com/PolarWasHere/Arctic/main/Arctic"))()
  3.  
  4. DH: loadstring(game:HttpGet("https://pastebin.com/raw/C6R2XTGi"))()
  5.  
  6. Funky friday: loadstring(game:HttpGet("https://raw.githubusercontent.com/wally-rblx/funky-friday-autoplay/main/main.lua",true))()
  7.  
  8. Da hood Silent aim: loadstring(game:HttpGet("https://raw.githubusercontent.com/NighterEpic/FadedLock/main/YesEpic"))()
  9.  
  10. Unfair hub: loadstring(game:HttpGet(('https://raw.githubusercontent.com/rblxscriptsnet/unfair/main/rblxhub.lua'),true))()
  11.  
  12. Thunder Client (ARSENAL): loadstring(game:HttpGet("https://raw.githubusercontent.com/fusiongreg/BoltsHubV5/main/Main", true))()
  13.  
  14. Be a Parkour Ninja Script: loadstring(game:HttpGet("https://raw.githubusercontent.com/Min1273/n-to/main/README.md"))()
  15.  
  16. Strongest battlegrounds script: loadstring(game:HttpGet("https://raw.githubusercontent.com/Nicuse/RobloxScripts/main/SaitamaBattlegrounds.lua"))()
  17.  
  18. Bloxfruits: loadstring(game:HttpGet("https://raw.githubusercontent.com/XO-3S-CL-VCK-jf-3HDM/Products/main/Old-BloxFruit"))()
  19.  
  20. Blox Fruits (Zen Hub): loadstring(game:HttpGet("https://raw.githubusercontent.com/Kaizenofficiall/ZenHub/main/Loader",
  21. true))()
  22.  
  23. Blox Fruits (Relz Hub): loadstring(Game:HttpGet"https://relzhub.xcodehoster.com/loader.lua")()
  24.  
  25. Blox Fruits (Mukuro): loadstring(game:HttpGet"https://raw.githubusercontent.com/xDepressionx/Free-Script/main/AllScript.lua")()
  26.  
  27. Lux Hub: loadstring(game:HttpGet('https://luxhub.cc/script.lua'))()
  28.  
  29. Bloxburg: loadstring(game:HttpGet("https://raw.githubusercontent.com/PainfulDestroyer/Roblox/main/Scar%20Hub"))()
  30.  
  31. Brookhaven (Icehub): loadstring(game:HttpGet("https://raw.githubusercontent.com/IceMael7/NewIceHub/main/Brookhaven"))()
  32.  
  33. Combat Warriors: loadstring(game:HttpGet("https://raw.githubusercontent.com/frkfx/Combat-Warriors/main/Script"))()
  34.  
  35. Faded: --Faded listed
  36. _G.Toggles = "V" -- You can put any keybind
  37. loadstring(game:HttpGet("https://raw.githubusercontent.com/NighterEpic/Faded/main/YesEpic", true))()
  38.  
  39. --Faded grid
  40. _G.Toggles = "V" -- You can put any keybind
  41. loadstring(game:HttpGet("https://raw.githubusercontent.com/NighterEpic/Faded-Grid/main/YesEpic", true))()
  42.  
  43. Swag Mode: loadstring(game:HttpGet('https://raw.githubusercontent.com/lerkermer/lua-projects/master/SwagModeV002'))()
  44.  
  45. Rename Script: Go down to line 4 and put your name where it says "YOUR NAME HERE" and replace anything you want your name to be in line 4 where it says "YOUR NEW NAME HERE"
  46.  
  47.  
  48. local You = "ericthefabulous" local head = workspace[You].Head:Clone() local model = Instance.new("Model",workspace) local humanoid = Instance.new("Humanoid",model) head.Parent = model model.Name = You.." YOUR NEW NAME HERE" humanoid.MaxHealth = 0 local w = Instance.new("Weld",model) w.Part0,w.Part1 = workspace[You].Head,head
  49.  
  50. Universal Aimbot: loadstring(game:HttpGet(('https://raw.githubusercontent.com/RTrade/Voidz/main/Games.lua'),true))()
  51.  
  52. Anti-Lag: local ToDisable = {
  53. Textures = true,
  54. VisualEffects = true,
  55. Parts = true,
  56. Particles = true,
  57. Sky = true
  58. }
  59.  
  60. local ToEnable = {
  61. FullBright = false
  62. }
  63.  
  64. local Stuff = {}
  65.  
  66. for _, v in next, game:GetDescendants() do
  67. if ToDisable.Parts then
  68. if v:IsA("Part") or v:IsA("Union") or v:IsA("BasePart") then
  69. v.Material = Enum.Material.SmoothPlastic
  70. table.insert(Stuff, 1, v)
  71. end
  72. end
  73.  
  74. if ToDisable.Particles then
  75. if v:IsA("ParticleEmitter") or v:IsA("Smoke") or v:IsA("Explosion") or v:IsA("Sparkles") or v:IsA("Fire") then
  76. v.Enabled = false
  77. table.insert(Stuff, 1, v)
  78. end
  79. end
  80.  
  81. if ToDisable.VisualEffects then
  82. if v:IsA("BloomEffect") or v:IsA("BlurEffect") or v:IsA("DepthOfFieldEffect") or v:IsA("SunRaysEffect") then
  83. v.Enabled = false
  84. table.insert(Stuff, 1, v)
  85. end
  86. end
  87.  
  88. if ToDisable.Textures then
  89. if v:IsA("Decal") or v:IsA("Texture") then
  90. v.Texture = ""
  91. table.insert(Stuff, 1, v)
  92. end
  93. end
  94.  
  95. if ToDisable.Sky then
  96. if v:IsA("Sky") then
  97. v.Parent = nil
  98. table.insert(Stuff, 1, v)
  99. end
  100. end
  101. end
  102.  
  103. game:GetService("TestService"):Message("Effects Disabler Script : Successfully disabled "..#Stuff.." assets / effects. Settings :")
  104.  
  105. for i, v in next, ToDisable do
  106. print(tostring(i)..": "..tostring(v))
  107. end
  108.  
  109. if ToEnable.FullBright then
  110. local Lighting = game:GetService("Lighting")
  111.  
  112. Lighting.FogColor = Color3.fromRGB(255, 255, 255)
  113. Lighting.FogEnd = math.huge
  114. Lighting.FogStart = math.huge
  115. Lighting.Ambient = Color3.fromRGB(255, 255, 255)
  116. Lighting.Brightness = 5
  117. Lighting.ColorShift_Bottom = Color3.fromRGB(255, 255, 255)
  118. Lighting.ColorShift_Top = Color3.fromRGB(255, 255, 255)
  119. Lighting.OutdoorAmbient = Color3.fromRGB(255, 255, 255)
  120. Lighting.Outlines = true
  121. end
  122.  
  123.  
  124.  
  125.  
  126.  
  127.  
  128.  
  129. Da Hood animation pack+:
  130.  
  131. -- Credit for Zackary#1011 for making animation pack/++
  132. -- and credit for ilovebee#6666 for giving animations id
  133.  
  134. repeat
  135. wait()
  136. until game:IsLoaded() and game.Players.LocalPlayer.Character:FindFirstChild("FULLY_LOADED_CHAR") and game.Players.LocalPlayer.PlayerGui.MainScreenGui:FindFirstChild("AnimationPack") and game.Players.LocalPlayer.PlayerGui.MainScreenGui:FindFirstChild("AnimationPlusPack")
  137.  
  138. if game.ReplicatedStorage.ClientAnimations:FindFirstChild("Lean") then
  139. game.ReplicatedStorage.ClientAnimations.Lean:Destroy()
  140. end
  141.  
  142. if game.ReplicatedStorage.ClientAnimations:FindFirstChild("Lay") then
  143. game.ReplicatedStorage.ClientAnimations.Lay:Destroy()
  144. end
  145.  
  146. if game.ReplicatedStorage.ClientAnimations:FindFirstChild("Dance1") then
  147. game.ReplicatedStorage.ClientAnimations.Dance1:Destroy()
  148. end
  149.  
  150. if game.ReplicatedStorage.ClientAnimations:FindFirstChild("Dance2") then
  151. game.ReplicatedStorage.ClientAnimations.Dance2:Destroy()
  152. end
  153.  
  154. if game.ReplicatedStorage.ClientAnimations:FindFirstChild("Greet") then
  155. game.ReplicatedStorage.ClientAnimations.Greet:Destroy()
  156. end
  157.  
  158. if game.ReplicatedStorage.ClientAnimations:FindFirstChild("Chest Pump") then
  159. game.ReplicatedStorage.ClientAnimations["Chest Pump"]:Destroy()
  160. end
  161.  
  162. if game.ReplicatedStorage.ClientAnimations:FindFirstChild("Praying") then
  163. game.ReplicatedStorage.ClientAnimations.Praying:Destroy()
  164. end
  165.  
  166. if game.ReplicatedStorage.ClientAnimations:FindFirstChild("TheDefault") then
  167. game.ReplicatedStorage.ClientAnimations.TheDefault:Destroy()
  168. end
  169.  
  170. if game.ReplicatedStorage.ClientAnimations:FindFirstChild("Sturdy") then
  171. game.ReplicatedStorage.ClientAnimations.Sturdy:Destroy()
  172. end
  173.  
  174. if game.ReplicatedStorage.ClientAnimations:FindFirstChild("Rossy") then
  175. game.ReplicatedStorage.ClientAnimations.Rossy:Destroy()
  176. end
  177.  
  178. if game.ReplicatedStorage.ClientAnimations:FindFirstChild("Griddy") then
  179. game.ReplicatedStorage.ClientAnimations.Griddy:Destroy()
  180. end
  181.  
  182. if game.ReplicatedStorage.ClientAnimations:FindFirstChild("TPose") then
  183. game.ReplicatedStorage.ClientAnimations.TPose:Destroy()
  184. end
  185.  
  186. if game.ReplicatedStorage.ClientAnimations:FindFirstChild("SpeedBlitz") then
  187. game.ReplicatedStorage.ClientAnimations.SpeedBlitz:Destroy()
  188. end
  189.  
  190. local Animations = game.ReplicatedStorage.ClientAnimations
  191.  
  192. local LeanAnimation = Instance.new("Animation", Animations)
  193. LeanAnimation.Name = "Lean"
  194. LeanAnimation.AnimationId = "rbxassetid://3152375249"
  195.  
  196. local LayAnimation = Instance.new("Animation", Animations)
  197. LayAnimation.Name = "Lay"
  198. LayAnimation.AnimationId = "rbxassetid://3152378852"
  199.  
  200. local Dance1Animation = Instance.new("Animation", Animations)
  201. Dance1Animation.Name = "Dance1"
  202. Dance1Animation.AnimationId = "rbxassetid://3189773368"
  203.  
  204. local Dance2Animation = Instance.new("Animation", Animations)
  205. Dance2Animation.Name = "Dance2"
  206. Dance2Animation.AnimationId = "rbxassetid://3189776546"
  207.  
  208. local GreetAnimation = Instance.new("Animation", Animations)
  209. GreetAnimation.Name = "Greet"
  210. GreetAnimation.AnimationId = "rbxassetid://3189777795"
  211.  
  212. local ChestPumpAnimation = Instance.new("Animation", Animations)
  213. ChestPumpAnimation.Name = "Chest Pump"
  214. ChestPumpAnimation.AnimationId = "rbxassetid://3189779152"
  215.  
  216. local PrayingAnimation = Instance.new("Animation", Animations)
  217. PrayingAnimation.Name = "Praying"
  218. PrayingAnimation.AnimationId = "rbxassetid://3487719500"
  219.  
  220. local TheDefaultAnimation = Instance.new("Animation", Animations)
  221. TheDefaultAnimation.Name = "TheDefault"
  222. TheDefaultAnimation.AnimationId = "rbxassetid://11710529975" -- FIX THIS
  223.  
  224. local SturdyAnimation = Instance.new("Animation", Animations)
  225. SturdyAnimation.Name = "Sturdy"
  226. SturdyAnimation.AnimationId = "rbxassetid://11710524717"
  227.  
  228. local RossyAnimation = Instance.new("Animation", Animations)
  229. RossyAnimation.Name = "Rossy"
  230. RossyAnimation.AnimationId = "rbxassetid://11710527244"
  231.  
  232. local GriddyAnimation = Instance.new("Animation", Animations)
  233. GriddyAnimation.Name = "Griddy"
  234. GriddyAnimation.AnimationId = "rbxassetid://11710529220"
  235.  
  236. local TPoseAnimation = Instance.new("Animation", Animations)
  237. TPoseAnimation.Name = "TPose"
  238. TPoseAnimation.AnimationId = "rbxassetid://11710524200"
  239.  
  240. local SpeedBlitzAnimation = Instance.new("Animation", Animations)
  241. SpeedBlitzAnimation.Name = "SpeedBlitz"
  242. SpeedBlitzAnimation.AnimationId = "rbxassetid://11710541744"
  243.  
  244. function AnimationPack(Character)
  245. Character:WaitForChild'Humanoid'
  246. repeat
  247. wait()
  248. until game.Players.LocalPlayer.Character:FindFirstChild("FULLY_LOADED_CHAR") and game.Players.LocalPlayer.PlayerGui.MainScreenGui:FindFirstChild("AnimationPack") and game.Players.LocalPlayer.PlayerGui.MainScreenGui:FindFirstChild("AnimationPlusPack")
  249.  
  250. local AnimationPack = game:GetService("Players").LocalPlayer.PlayerGui.MainScreenGui.AnimationPack
  251. local AnimationPackPlus = game:GetService("Players").LocalPlayer.PlayerGui.MainScreenGui.AnimationPlusPack
  252. local ScrollingFrame = AnimationPack.ScrollingFrame
  253. local CloseButton = AnimationPack.CloseButton
  254. local ScrollingFramePlus = AnimationPackPlus.ScrollingFrame
  255. local CloseButtonPlus = AnimationPackPlus.CloseButton
  256.  
  257. local Lean = game:GetService("Players").LocalPlayer.Character.Humanoid:LoadAnimation(LeanAnimation)
  258.  
  259. local Lay = game:GetService("Players").LocalPlayer.Character.Humanoid:LoadAnimation(LayAnimation)
  260.  
  261. local Dance1 = game:GetService("Players").LocalPlayer.Character.Humanoid:LoadAnimation(Dance1Animation)
  262.  
  263. local Dance2 = game:GetService("Players").LocalPlayer.Character.Humanoid:LoadAnimation(Dance2Animation)
  264.  
  265. local Greet = game:GetService("Players").LocalPlayer.Character.Humanoid:LoadAnimation(GreetAnimation)
  266.  
  267. local ChestPump = game:GetService("Players").LocalPlayer.Character.Humanoid:LoadAnimation(ChestPumpAnimation)
  268.  
  269. local Praying = game:GetService("Players").LocalPlayer.Character.Humanoid:LoadAnimation(PrayingAnimation)
  270.  
  271. local TheDefault = game:GetService("Players").LocalPlayer.Character.Humanoid:LoadAnimation(TheDefaultAnimation)
  272.  
  273. local Sturdy = game:GetService("Players").LocalPlayer.Character.Humanoid:LoadAnimation(SturdyAnimation)
  274.  
  275. local Rossy = game:GetService("Players").LocalPlayer.Character.Humanoid:LoadAnimation(RossyAnimation)
  276.  
  277. local Griddy = game:GetService("Players").LocalPlayer.Character.Humanoid:LoadAnimation(GriddyAnimation)
  278.  
  279. local TPose = game:GetService("Players").LocalPlayer.Character.Humanoid:LoadAnimation(TPoseAnimation)
  280.  
  281. local SpeedBlitz = game:GetService("Players").LocalPlayer.Character.Humanoid:LoadAnimation(SpeedBlitzAnimation)
  282.  
  283. AnimationPack.Visible = true
  284.  
  285. AnimationPackPlus.Visible = true
  286.  
  287. ScrollingFrame.UIListLayout.SortOrder = Enum.SortOrder.LayoutOrder
  288.  
  289. ScrollingFramePlus.UIListLayout.SortOrder = Enum.SortOrder.LayoutOrder
  290.  
  291. for i,v in pairs(ScrollingFrame:GetChildren()) do
  292. if v.Name == "TextButton" then
  293. if v.Text == "Lean" then
  294. v.Name = "LeanButton"
  295. end
  296. end
  297. end
  298.  
  299. for i,v in pairs(ScrollingFrame:GetChildren()) do
  300. if v.Name == "TextButton" then
  301. if v.Text == "Lay" then
  302. v.Name = "LayButton"
  303. end
  304. end
  305. end
  306.  
  307. for i,v in pairs(ScrollingFrame:GetChildren()) do
  308. if v.Name == "TextButton" then
  309. if v.Text == "Dance1" then
  310. v.Name = "Dance1Button"
  311. end
  312. end
  313. end
  314.  
  315. for i,v in pairs(ScrollingFrame:GetChildren()) do
  316. if v.Name == "TextButton" then
  317. if v.Text == "Dance2" then
  318. v.Name = "Dance2Button"
  319. end
  320. end
  321. end
  322.  
  323. for i,v in pairs(ScrollingFrame:GetChildren()) do
  324. if v.Name == "TextButton" then
  325. if v.Text == "Greet" then
  326. v.Name = "GreetButton"
  327. end
  328. end
  329. end
  330.  
  331. for i,v in pairs(ScrollingFrame:GetChildren()) do
  332. if v.Name == "TextButton" then
  333. if v.Text == "Chest Pump" then
  334. v.Name = "ChestPumpButton"
  335. end
  336. end
  337. end
  338.  
  339. for i,v in pairs(ScrollingFrame:GetChildren()) do
  340. if v.Name == "TextButton" then
  341. if v.Text == "Praying" then
  342. v.Name = "PrayingButton"
  343. end
  344. end
  345. end
  346.  
  347. for i,v in pairs(ScrollingFramePlus:GetChildren()) do
  348. if v.Name == "TextButton" then
  349. if v.Text == "The Default" then
  350. v.Name = "TheDefaultButton"
  351. end
  352. end
  353. end
  354.  
  355. for i,v in pairs(ScrollingFramePlus:GetChildren()) do
  356. if v.Name == "TextButton" then
  357. if v.Text == "Sturdy" then
  358. v.Name = "SturdyButton"
  359. end
  360. end
  361. end
  362.  
  363. for i,v in pairs(ScrollingFramePlus:GetChildren()) do
  364. if v.Name == "TextButton" then
  365. if v.Text == "Rossy" then
  366. v.Name = "RossyButton"
  367. end
  368. end
  369. end
  370.  
  371. for i,v in pairs(ScrollingFramePlus:GetChildren()) do
  372. if v.Name == "TextButton" then
  373. if v.Text == "Griddy" then
  374. v.Name = "GriddyButton"
  375. end
  376. end
  377. end
  378.  
  379. for i,v in pairs(ScrollingFramePlus:GetChildren()) do
  380. if v.Name == "TextButton" then
  381. if v.Text == "T Pose" then
  382. v.Name = "TPoseButton"
  383. end
  384. end
  385. end
  386.  
  387. for i,v in pairs(ScrollingFramePlus:GetChildren()) do
  388. if v.Name == "TextButton" then
  389. if v.Text == "Speed Blitz" then
  390. v.Name = "SpeedBlitzButton"
  391. end
  392. end
  393. end
  394.  
  395. function Stop()
  396. Lean:Stop()
  397. Lay:Stop()
  398. Dance1:Stop()
  399. Dance2:Stop()
  400. Greet:Stop()
  401. ChestPump:Stop()
  402. Praying:Stop()
  403. TheDefault:Stop()
  404. Sturdy:Stop()
  405. Rossy:Stop()
  406. Griddy:Stop()
  407. TPose:Stop()
  408. SpeedBlitz:Stop()
  409. end
  410.  
  411. --credit Zackary#1011 (again cuz someone might skid this to their script)
  412.  
  413. local LeanTextButton = ScrollingFrame.LeanButton
  414. local LayTextButton = ScrollingFrame.LayButton
  415. local Dance1TextButton = ScrollingFrame.Dance1Button
  416. local Dance2TextButton = ScrollingFrame.Dance2Button
  417. local GreetTextButton = ScrollingFrame.GreetButton
  418. local ChestPumpTextButton = ScrollingFrame.ChestPumpButton
  419. local PrayingTextButton = ScrollingFrame.PrayingButton
  420. local TheDefaultTextButton = ScrollingFramePlus.TheDefaultButton
  421. local SturdyTextButton = ScrollingFramePlus.SturdyButton
  422. local RossyTextButton = ScrollingFramePlus.RossyButton
  423. local GriddyTextButton = ScrollingFramePlus.GriddyButton
  424. local TPoseTextButton = ScrollingFramePlus.TPoseButton
  425. local SpeedBlitzTextButton = ScrollingFramePlus.SpeedBlitzButton
  426.  
  427. AnimationPack.MouseButton1Click:Connect(function()
  428. if ScrollingFrame.Visible == false then
  429. ScrollingFrame.Visible = true
  430. CloseButton.Visible = true
  431. AnimationPackPlus.Visible = false
  432. end
  433. end)
  434. AnimationPackPlus.MouseButton1Click:Connect(function()
  435. if ScrollingFramePlus.Visible == false then
  436. ScrollingFramePlus.Visible = true
  437. CloseButtonPlus.Visible = true
  438. AnimationPack.Visible = false
  439. end
  440. end)
  441. CloseButton.MouseButton1Click:Connect(function()
  442. if ScrollingFrame.Visible == true then
  443. ScrollingFrame.Visible = false
  444. CloseButton.Visible = false
  445. AnimationPackPlus.Visible = true
  446. end
  447. end)
  448. CloseButtonPlus.MouseButton1Click:Connect(function()
  449. if ScrollingFramePlus.Visible == true then
  450. ScrollingFramePlus.Visible = false
  451. CloseButtonPlus.Visible = false
  452. AnimationPack.Visible = true
  453. end
  454. end)
  455.  
  456. LeanTextButton.MouseButton1Click:Connect(function()
  457. Stop()
  458. Lean:Play()
  459. end)
  460. LayTextButton.MouseButton1Click:Connect(function()
  461. Stop()
  462. Lay:Play()
  463. end)
  464. Dance1TextButton.MouseButton1Click:Connect(function()
  465. Stop()
  466. Dance1:Play()
  467. end)
  468. Dance2TextButton.MouseButton1Click:Connect(function()
  469. Stop()
  470. Dance2:Play()
  471. end)
  472. GreetTextButton.MouseButton1Click:Connect(function()
  473. Stop()
  474. Greet:Play()
  475. end)
  476. ChestPumpTextButton.MouseButton1Click:Connect(function()
  477. Stop()
  478. ChestPump:Play()
  479. end)
  480. PrayingTextButton.MouseButton1Click:Connect(function()
  481. Stop()
  482. Praying:Play()
  483. end)
  484. TheDefaultTextButton.MouseButton1Click:Connect(function()
  485. Stop()
  486. TheDefault:Play()
  487. end)
  488. SturdyTextButton.MouseButton1Click:Connect(function()
  489. Stop()
  490. Sturdy:Play()
  491. end)
  492. RossyTextButton.MouseButton1Click:Connect(function()
  493. Stop()
  494. Rossy:Play()
  495. end)
  496. GriddyTextButton.MouseButton1Click:Connect(function()
  497. Stop()
  498. Griddy:Play()
  499. end)
  500. TPoseTextButton.MouseButton1Click:Connect(function()
  501. Stop()
  502. TPose:Play()
  503. end)
  504. SpeedBlitzTextButton.MouseButton1Click:Connect(function()
  505. Stop()
  506. SpeedBlitz:Play()
  507. end)
  508.  
  509. game:GetService("Players").LocalPlayer.Character.Humanoid.Running:Connect(function()
  510. Stop()
  511. end)
  512.  
  513. game:GetService("Players").LocalPlayer.CharacterAdded:Connect(function()
  514. Stop()
  515. end)
  516. end
  517. AnimationPack(game.Players.LocalPlayer.Character)
  518. game.Players.LocalPlayer.CharacterAdded:Connect(AnimationPack)
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement