Advertisement
SumitScripts

Untitled

Apr 26th, 2024
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.74 KB | None | 0 0
  1. print("CONSOLE // LOADING SCRIPT")
  2.  
  3.  
  4. task.wait(5)
  5. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/Robojini/Tuturial_UI_Library/main/UI_Template_1"))()
  6.  
  7. local Window = Library.CreateLib("SumitScripts's Hide and seek GUI 1.5", "RJTheme3")
  8.  
  9. local Tab = Window:NewTab("AutoFarm")
  10. local Section = Tab:NewSection("AutoFarm")
  11.  
  12. Section:NewButton("Collect all coins", "Teleport coins to you", function()
  13. for i,v in pairs(game:GetDescendants()) do
  14. if v.Name == 'Credit' then
  15. v.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  16. end
  17. end
  18. end)
  19.  
  20. Section:NewButton("Collect all coins (LOOP)", "Teleports coins to you (YOU CAN'T DISABLE IT!)", function()
  21. while wait(10) do
  22. for i,v in pairs(game:GetDescendants()) do
  23. if v.Name == 'Credit' then
  24. v.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  25. end
  26. end
  27. end
  28. end)
  29. local Section = Tab:NewSection("Autofarm works after map will be chosen")
  30.  
  31.  
  32.  
  33. local Section = Tab:NewSection("Teleport")
  34. Section:NewButton("Safe place teleport", "Teleports you to safe place ", function()
  35. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").Lobby.BasePlate.CFrame
  36. end)
  37.  
  38. Section:NewButton("Bring All (Killer)", "Bring All You Can Kill Easily", function()
  39. --[[
  40. bad skid
  41. --]]
  42.  
  43. local L_1_ = true;
  44. local L_2_ = game.Players.LocalPlayer.Character.HumanoidRootPart;
  45. local L_3_ = L_2_.Position - Vector3.new(5, 0, 0)
  46.  
  47. game.Players.LocalPlayer:GetMouse().KeyDown:Connect(function(L_4_arg1)
  48. if L_4_arg1 == 'f' then
  49. L_1_ = not L_1_
  50. end;
  51. if L_4_arg1 == 'r' then
  52. L_2_ = game.Players.LocalPlayer.Character.HumanoidRootPart;
  53. L_3_ = L_2_.Position - Vector3.new(5, 0, 0)
  54. end
  55. end)
  56.  
  57. for L_5_forvar1, L_6_forvar2 in pairs(game.Players:GetPlayers()) do
  58. if L_6_forvar2 == game.Players.LocalPlayer then
  59. else
  60. local L_7_ = coroutine.create(function()
  61. game:GetService('RunService').RenderStepped:Connect(function()
  62. local L_8_, L_9_ = pcall(function()
  63. local L_10_ = L_6_forvar2.Character;
  64. if L_10_ then
  65. if L_10_:FindFirstChild("HumanoidRootPart") then
  66. if L_1_ then
  67. L_6_forvar2.Backpack:ClearAllChildren()
  68. for L_11_forvar1, L_12_forvar2 in pairs(L_10_:GetChildren()) do
  69. if L_12_forvar2:IsA("Tool") then
  70. L_12_forvar2:Destroy()
  71. end
  72. end;
  73. L_10_.HumanoidRootPart.CFrame = CFrame.new(L_3_)
  74. end
  75. end
  76. end
  77. end)
  78. if L_8_ then
  79. else
  80. warn("Unnormal error: "..L_9_)
  81. end
  82. end)
  83. end)
  84. coroutine.resume(L_7_)
  85. end
  86. end;
  87.  
  88. game.Players.PlayerAdded:Connect(function(L_13_arg1)
  89. if L_13_arg1 == game.Players.LocalPlayer then
  90. else
  91. local L_14_ = coroutine.create(function()
  92. game:GetService('RunService').RenderStepped:Connect(function()
  93. local L_15_, L_16_ = pcall(function()
  94. local L_17_ = L_13_arg1.Character;
  95. if L_17_ then
  96. if L_17_:FindFirstChild("HumanoidRootPart") then
  97. if L_1_ then
  98. L_13_arg1.Backpack:ClearAllChildren()
  99. for L_18_forvar1, L_19_forvar2 in pairs(L_17_:GetChildren()) do
  100. if L_19_forvar2:IsA("Tool") then
  101. L_19_forvar2:Destroy()
  102. end
  103. end;
  104. L_17_.HumanoidRootPart.CFrame = CFrame.new(L_3_)
  105. end
  106. end
  107. end
  108. end)
  109. if L_15_ then
  110. else
  111. warn("Unnormal error: "..L_16_)
  112. end
  113. end)
  114. end)
  115. coroutine.resume(L_14_)
  116. end
  117. end)
  118. print("CONSOLE // SUCCESSFULLY LOADED SCRIPT")
  119.  
  120. local Tab = Window:NewTab("LocalPlayer")
  121. local Section = Tab:NewSection("WalkSpeed | JumpPower")
  122. Section:NewSlider("WalkSpeed", "Changes your WalkSpeed", 200, 16, function(s)
  123. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s
  124. end)
  125. Section:NewSlider("JumpPower", "Changes your JumpPower", 400, 50, function(J)
  126. game.Players.LocalPlayer.Character.Humanoid.JumpPower = J
  127. end)
  128. local Section = Tab:NewSection("Don't step on pads which changes the JumpPower")
  129.  
  130. local Tab = Window:NewTab("Mics")
  131. local Section = Tab:NewSection("Keybinds")
  132. Section:NewKeybind("CloseGUI", "closes GUI when you click binded keybind", Enum.KeyCode.V, function()
  133. Library:ToggleUI()
  134. end)
  135.  
  136. local Tab = Window:NewTab("Credits")
  137. local Section = Tab:NewSection("Scripted by SumitScripts")
  138.  
  139. local Tab = Window:NewTab("Loader")
  140. local Section = Tab:NewSection("Lol")
  141. Section:NewButton("Load Awesome Explorer ", "", function()
  142. loadstring(game:HttpGet("https://raw.githubusercontent.com/wally-rblx/awesome-explorer/main/source.lua"))()
  143. end)
  144. Section:NewButton("Load Infinite Yield ", "", function()
  145. loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
  146. end)
  147.  
  148. print("CONSOLE // SUCCESSFULLY LOADED SCRIPT")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement