Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- print("CONSOLE // LOADING SCRIPT")
- task.wait(5)
- local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/Robojini/Tuturial_UI_Library/main/UI_Template_1"))()
- local Window = Library.CreateLib("SumitScripts's Hide and seek GUI 1.5", "RJTheme3")
- local Tab = Window:NewTab("AutoFarm")
- local Section = Tab:NewSection("AutoFarm")
- Section:NewButton("Collect all coins", "Teleport coins to you", function()
- for i,v in pairs(game:GetDescendants()) do
- if v.Name == 'Credit' then
- v.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
- end
- end
- end)
- Section:NewButton("Collect all coins (LOOP)", "Teleports coins to you (YOU CAN'T DISABLE IT!)", function()
- while wait(10) do
- for i,v in pairs(game:GetDescendants()) do
- if v.Name == 'Credit' then
- v.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
- end
- end
- end
- end)
- local Section = Tab:NewSection("Autofarm works after map will be chosen")
- local Section = Tab:NewSection("Teleport")
- Section:NewButton("Safe place teleport", "Teleports you to safe place ", function()
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").Lobby.BasePlate.CFrame
- end)
- Section:NewButton("Bring All (Killer)", "Bring All You Can Kill Easily", function()
- --[[
- bad skid
- --]]
- local L_1_ = true;
- local L_2_ = game.Players.LocalPlayer.Character.HumanoidRootPart;
- local L_3_ = L_2_.Position - Vector3.new(5, 0, 0)
- game.Players.LocalPlayer:GetMouse().KeyDown:Connect(function(L_4_arg1)
- if L_4_arg1 == 'f' then
- L_1_ = not L_1_
- end;
- if L_4_arg1 == 'r' then
- L_2_ = game.Players.LocalPlayer.Character.HumanoidRootPart;
- L_3_ = L_2_.Position - Vector3.new(5, 0, 0)
- end
- end)
- for L_5_forvar1, L_6_forvar2 in pairs(game.Players:GetPlayers()) do
- if L_6_forvar2 == game.Players.LocalPlayer then
- else
- local L_7_ = coroutine.create(function()
- game:GetService('RunService').RenderStepped:Connect(function()
- local L_8_, L_9_ = pcall(function()
- local L_10_ = L_6_forvar2.Character;
- if L_10_ then
- if L_10_:FindFirstChild("HumanoidRootPart") then
- if L_1_ then
- L_6_forvar2.Backpack:ClearAllChildren()
- for L_11_forvar1, L_12_forvar2 in pairs(L_10_:GetChildren()) do
- if L_12_forvar2:IsA("Tool") then
- L_12_forvar2:Destroy()
- end
- end;
- L_10_.HumanoidRootPart.CFrame = CFrame.new(L_3_)
- end
- end
- end
- end)
- if L_8_ then
- else
- warn("Unnormal error: "..L_9_)
- end
- end)
- end)
- coroutine.resume(L_7_)
- end
- end;
- game.Players.PlayerAdded:Connect(function(L_13_arg1)
- if L_13_arg1 == game.Players.LocalPlayer then
- else
- local L_14_ = coroutine.create(function()
- game:GetService('RunService').RenderStepped:Connect(function()
- local L_15_, L_16_ = pcall(function()
- local L_17_ = L_13_arg1.Character;
- if L_17_ then
- if L_17_:FindFirstChild("HumanoidRootPart") then
- if L_1_ then
- L_13_arg1.Backpack:ClearAllChildren()
- for L_18_forvar1, L_19_forvar2 in pairs(L_17_:GetChildren()) do
- if L_19_forvar2:IsA("Tool") then
- L_19_forvar2:Destroy()
- end
- end;
- L_17_.HumanoidRootPart.CFrame = CFrame.new(L_3_)
- end
- end
- end
- end)
- if L_15_ then
- else
- warn("Unnormal error: "..L_16_)
- end
- end)
- end)
- coroutine.resume(L_14_)
- end
- end)
- print("CONSOLE // SUCCESSFULLY LOADED SCRIPT")
- local Tab = Window:NewTab("LocalPlayer")
- local Section = Tab:NewSection("WalkSpeed | JumpPower")
- Section:NewSlider("WalkSpeed", "Changes your WalkSpeed", 200, 16, function(s)
- game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s
- end)
- Section:NewSlider("JumpPower", "Changes your JumpPower", 400, 50, function(J)
- game.Players.LocalPlayer.Character.Humanoid.JumpPower = J
- end)
- local Section = Tab:NewSection("Don't step on pads which changes the JumpPower")
- local Tab = Window:NewTab("Mics")
- local Section = Tab:NewSection("Keybinds")
- Section:NewKeybind("CloseGUI", "closes GUI when you click binded keybind", Enum.KeyCode.V, function()
- Library:ToggleUI()
- end)
- local Tab = Window:NewTab("Credits")
- local Section = Tab:NewSection("Scripted by SumitScripts")
- local Tab = Window:NewTab("Loader")
- local Section = Tab:NewSection("Lol")
- Section:NewButton("Load Awesome Explorer ", "", function()
- loadstring(game:HttpGet("https://raw.githubusercontent.com/wally-rblx/awesome-explorer/main/source.lua"))()
- end)
- Section:NewButton("Load Infinite Yield ", "", function()
- loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
- end)
- print("CONSOLE // SUCCESSFULLY LOADED SCRIPT")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement