Advertisement
SumitScripts

Untitled

Feb 18th, 2024
4,889
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.05 KB | None | 0 0
  1.  
  2.  
  3. wait(1.2)
  4.  
  5. game.StarterGui:SetCore("SendNotification", {
  6.  
  7. Title = "Welcome"; -- the title (ofc)
  8.  
  9. Text = "Script Made By SumitScripts"; -- what the text says (ofc)
  10.  
  11. Icon = ""; -- the image if u want.
  12.  
  13. Duration = 5; -- how long the notification should in secounds
  14.  
  15. })
  16.  
  17.  
  18.  
  19.  
  20.  
  21.  
  22.  
  23.  
  24.  
  25. local Library = loadstring(game:HttpGet("https://pastebin.com/raw/vff1bQ9F"))()
  26.  
  27. local Window = Library.CreateLib("🔴Green Light Red Light🟢 - SumitScripts", "DarkTheme")
  28.  
  29. local LocalPlayer = Window:NewTab("LocalPlayer")
  30.  
  31. local Gamepasses = Window:NewTab("Gamepasses")
  32.  
  33. local Gamehacks = Window:NewTab("Auto Wins")
  34.  
  35.  
  36.  
  37. -- Gamepasses
  38.  
  39. local gp = Gamepasses:NewSection("Guard/Frontman")
  40.  
  41.  
  42.  
  43. gp:NewButton("Become Frontman", "Become the Frontman this match.", function()
  44.  
  45. local args = {
  46.  
  47. [1] = true
  48.  
  49. }
  50.  
  51.  
  52.  
  53. game:GetService("ReplicatedStorage"):WaitForChild("FrontmanRemotes"):WaitForChild("BecomeFrontman"):InvokeServer(unpack(args))
  54.  
  55. end)
  56.  
  57.  
  58.  
  59. gp:NewButton("Become Guard", "Become a Guard this match.", function()
  60.  
  61. local args = {
  62.  
  63. [1] = true
  64.  
  65. }
  66.  
  67.  
  68.  
  69. game:GetService("ReplicatedStorage"):WaitForChild("GuardRemotes"):WaitForChild("BecomeGuard"):InvokeServer(unpack(args))
  70.  
  71. end)
  72.  
  73.  
  74.  
  75. -- LocalPlayer
  76.  
  77.  
  78.  
  79. local lp = LocalPlayer:NewSection("Movement")
  80.  
  81.  
  82.  
  83. lp:NewToggle("Fast Walk", "Flash walk speed", function(state)
  84.  
  85. if state then
  86.  
  87. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 120
  88.  
  89. else
  90.  
  91. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
  92.  
  93. end
  94.  
  95. end)
  96.  
  97.  
  98.  
  99. lp:NewButton("Infinite Yield", "Open an admin script (fly, jumppower, etc...)", function()
  100.  
  101. loadstring(game:HttpGet("https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source"))()
  102.  
  103. end)
  104.  
  105.  
  106.  
  107. lp:NewButton("Spdm Team Squid Game", "Squid Game (Squid Game...)", function()
  108.  
  109. loadstring(game:HttpGet("https://raw.githubusercontent.com/shuttle-r/crap/main/Main.txt",true))()
  110.  
  111. end)
  112.  
  113.  
  114.  
  115. -- Auto Wins
  116.  
  117. local rg = Gamehacks:NewSection("Cookie Cutter")
  118.  
  119. rg:NewButton("Break the Game", "Spam this on cookie game if you are frontman.", function()
  120.  
  121. local args = {
  122.  
  123. [1] = 1,
  124.  
  125. [2] = "Triangle"
  126.  
  127. }
  128.  
  129.  
  130.  
  131. game:GetService("ReplicatedStorage"):WaitForChild("FrontmanRemotes"):WaitForChild("PickShape"):FireServer(unpack(args))
  132.  
  133.  
  134.  
  135. local args = {
  136.  
  137. [1] = 2,
  138.  
  139. [2] = "Triangle"
  140.  
  141. }
  142.  
  143.  
  144.  
  145. game:GetService("ReplicatedStorage"):WaitForChild("FrontmanRemotes"):WaitForChild("PickShape"):FireServer(unpack(args))
  146.  
  147.  
  148.  
  149. local args = {
  150.  
  151. [1] = 3,
  152.  
  153. [2] = "Triangle"
  154.  
  155. }
  156.  
  157.  
  158.  
  159. game:GetService("ReplicatedStorage"):WaitForChild("FrontmanRemotes"):WaitForChild("PickShape"):FireServer(unpack(args))
  160.  
  161.  
  162.  
  163. local args = {
  164.  
  165. [1] = 4,
  166.  
  167. [2] = "Triangle"
  168.  
  169. }
  170.  
  171.  
  172.  
  173. game:GetService("ReplicatedStorage"):WaitForChild("FrontmanRemotes"):WaitForChild("PickShape"):FireServer(unpack(args))
  174.  
  175. end)
  176.  
  177.  
  178.  
  179. rg:NewButton("Win Cookie Game", "Insta win cookie game.", function()
  180.  
  181. local args = {
  182.  
  183. [1] = true
  184.  
  185. }
  186.  
  187.  
  188.  
  189. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("HoneyCombResult"):FireServer(unpack(args))
  190.  
  191. end)
  192.  
  193.  
  194.  
  195. local rope = Gamehacks:NewSection("Tough War")
  196.  
  197. rope:NewButton("Pull Max Strengh", "Spam this button while on Tough War.", function()
  198.  
  199. local args = {
  200.  
  201. [1] = 0.9751851540058851
  202.  
  203. }
  204.  
  205.  
  206.  
  207. game:GetService("ReplicatedStorage"):WaitForChild("Pull"):FireServer(unpack(args))
  208.  
  209. end)
  210.  
  211.  
  212.  
  213. local glass = Gamehacks:NewSection("Glass Bridge")
  214.  
  215. glass:NewButton("Break Fake Glass", "Break all the fake glasses on the brigde.", function()
  216.  
  217. local args = {
  218.  
  219. [1] = workspace:WaitForChild("Glass"):WaitForChild("1R")
  220.  
  221. }
  222.  
  223.  
  224.  
  225. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("BreakGlass"):FireServer(unpack(args))
  226.  
  227.  
  228.  
  229. local args = {
  230.  
  231. [1] = workspace:WaitForChild("Glass"):WaitForChild("1L")
  232.  
  233. }
  234.  
  235.  
  236.  
  237. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("BreakGlass"):FireServer(unpack(args))
  238.  
  239.  
  240.  
  241. local args = {
  242.  
  243. [1] = workspace:WaitForChild("Glass"):WaitForChild("2R")
  244.  
  245. }
  246.  
  247.  
  248.  
  249. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("BreakGlass"):FireServer(unpack(args))
  250.  
  251.  
  252.  
  253. local args = {
  254.  
  255. [1] = workspace:WaitForChild("Glass"):WaitForChild("2L")
  256.  
  257. }
  258.  
  259.  
  260.  
  261. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("BreakGlass"):FireServer(unpack(args))
  262.  
  263.  
  264.  
  265. local args = {
  266.  
  267. [1] = workspace:WaitForChild("Glass"):WaitForChild("3R")
  268.  
  269. }
  270.  
  271.  
  272.  
  273. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("BreakGlass"):FireServer(unpack(args))
  274.  
  275.  
  276.  
  277. local args = {
  278.  
  279. [1] = workspace:WaitForChild("Glass"):WaitForChild("3L")
  280.  
  281. }
  282.  
  283.  
  284.  
  285. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("BreakGlass"):FireServer(unpack(args))
  286.  
  287.  
  288.  
  289. local args = {
  290.  
  291. [1] = workspace:WaitForChild("Glass"):WaitForChild("4R")
  292.  
  293. }
  294.  
  295.  
  296.  
  297. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("BreakGlass"):FireServer(unpack(args))
  298.  
  299.  
  300.  
  301. local args = {
  302.  
  303. [1] = workspace:WaitForChild("Glass"):WaitForChild("4L")
  304.  
  305. }
  306.  
  307.  
  308.  
  309. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("BreakGlass"):FireServer(unpack(args))
  310.  
  311.  
  312.  
  313. local args = {
  314.  
  315. [1] = workspace:WaitForChild("Glass"):WaitForChild("5R")
  316.  
  317. }
  318.  
  319.  
  320.  
  321. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("BreakGlass"):FireServer(unpack(args))
  322.  
  323.  
  324.  
  325. local args = {
  326.  
  327. [1] = workspace:WaitForChild("Glass"):WaitForChild("5L")
  328.  
  329. }
  330.  
  331.  
  332.  
  333. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("BreakGlass"):FireServer(unpack(args))
  334.  
  335.  
  336.  
  337. local args = {
  338.  
  339. [1] = workspace:WaitForChild("Glass"):WaitForChild("6R")
  340.  
  341. }
  342.  
  343.  
  344.  
  345. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("BreakGlass"):FireServer(unpack(args))
  346.  
  347.  
  348.  
  349. local args = {
  350.  
  351. [1] = workspace:WaitForChild("Glass"):WaitForChild("6L")
  352.  
  353. }
  354.  
  355.  
  356.  
  357. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("BreakGlass"):FireServer(unpack(args))
  358.  
  359.  
  360.  
  361. local args = {
  362.  
  363. [1] = workspace:WaitForChild("Glass"):WaitForChild("7R")
  364.  
  365. }
  366.  
  367.  
  368.  
  369. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("BreakGlass"):FireServer(unpack(args))
  370.  
  371.  
  372.  
  373. local args = {
  374.  
  375. [1] = workspace:WaitForChild("Glass"):WaitForChild("7L")
  376.  
  377. }
  378.  
  379.  
  380.  
  381. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("BreakGlass"):FireServer(unpack(args))
  382.  
  383.  
  384.  
  385. local args = {
  386.  
  387. [1] = workspace:WaitForChild("Glass"):WaitForChild("8R")
  388.  
  389. }
  390.  
  391.  
  392.  
  393. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("BreakGlass"):FireServer(unpack(args))
  394.  
  395.  
  396.  
  397. local args = {
  398.  
  399. [1] = workspace:WaitForChild("Glass"):WaitForChild("8L")
  400.  
  401. }
  402.  
  403.  
  404.  
  405. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("BreakGlass"):FireServer(unpack(args))
  406.  
  407.  
  408.  
  409. local args = {
  410.  
  411. [1] = workspace:WaitForChild("Glass"):WaitForChild("9R")
  412.  
  413. }
  414.  
  415.  
  416.  
  417. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("BreakGlass"):FireServer(unpack(args))
  418.  
  419.  
  420.  
  421. local args = {
  422.  
  423. [1] = workspace:WaitForChild("Glass"):WaitForChild("9L")
  424.  
  425. }
  426.  
  427.  
  428.  
  429. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("BreakGlass"):FireServer(unpack(args))
  430.  
  431.  
  432.  
  433. local args = {
  434.  
  435. [1] = workspace:WaitForChild("Glass"):WaitForChild("10R")
  436.  
  437. }
  438.  
  439.  
  440.  
  441. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("BreakGlass"):FireServer(unpack(args))
  442.  
  443.  
  444.  
  445. local args = {
  446.  
  447. [1] = workspace:WaitForChild("Glass"):WaitForChild("10L")
  448.  
  449. }
  450.  
  451.  
  452.  
  453. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("BreakGlass"):FireServer(unpack(args))
  454.  
  455. end)
  456.  
  457.  
  458.  
  459. local misc = Gamehacks:NewSection("Misc")
  460.  
  461. misc:NewButton("Teleport to Game", "Teleport from the lobby to the current game.", function()
  462.  
  463. local args = {
  464.  
  465. [1] = workspace:WaitForChild("Mechanics"):WaitForChild("GoalPart1")
  466.  
  467. }
  468.  
  469.  
  470.  
  471. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("ReachedGoal"):FireServer(unpack(args))
  472.  
  473. end)
  474.  
  475.  
  476.  
  477. rope:NewButton("Kick Team 1", "Click just once or it will break the game.", function()
  478.  
  479. local args = {
  480.  
  481. [1] = {
  482.  
  483. [1] = "Team1",
  484.  
  485. [2] = "Team1"
  486.  
  487. }
  488.  
  489. }
  490.  
  491.  
  492.  
  493. game:GetService("ReplicatedStorage"):WaitForChild("FrontmanRemotes"):WaitForChild("SelectMatch"):FireServer(unpack(args))
  494.  
  495. end)
  496.  
  497.  
  498.  
  499. rope:NewButton("Kick Team 2", "Click just once or it will break the game.", function()
  500.  
  501. local args = {
  502.  
  503. [1] = {
  504.  
  505. [1] = "Team2",
  506.  
  507. [2] = "Team2"
  508.  
  509. }
  510.  
  511. }
  512.  
  513.  
  514.  
  515. game:GetService("ReplicatedStorage"):WaitForChild("FrontmanRemotes"):WaitForChild("SelectMatch"):FireServer(unpack(args))
  516.  
  517. end)
  518.  
  519.  
  520.  
  521. rope:NewButton("Kick Team 3", "Click just once or it will break the game.", function()
  522.  
  523. local args = {
  524.  
  525. [1] = {
  526.  
  527. [1] = "Team3",
  528.  
  529. [2] = "Team3"
  530.  
  531. }
  532.  
  533. }
  534.  
  535.  
  536.  
  537. game:GetService("ReplicatedStorage"):WaitForChild("FrontmanRemotes"):WaitForChild("SelectMatch"):FireServer(unpack(args))
  538.  
  539. end)
  540.  
  541.  
  542.  
  543. rope:NewButton("Kick Team 4", "Click just once or it will break the game.", function()
  544.  
  545. local args = {
  546.  
  547. [1] = {
  548.  
  549. [1] = "Team4",
  550.  
  551. [2] = "Team4"
  552.  
  553. }
  554.  
  555. }
  556.  
  557.  
  558.  
  559. game:GetService("ReplicatedStorage"):WaitForChild("FrontmanRemotes"):WaitForChild("SelectMatch"):FireServer(unpack(args))
  560.  
  561. end)
  562.  
  563.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement