Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
- local Window = Library.CreateLib("Mm2 AutoFarm Hydra EX V1", "DarkTheme")
- local Tab = Window:NewTab("AutoFarm")
- local Section = Tab:NewSection("AutoFarm")
- Section:NewButton("Coin AutoFarmer", "Teleports You To Coins Every 6 Seconds", function()
- local WaitTime = 6
- local MaxCoins = 50
- local function OnNewRound(CoinContainer)
- local Character = game.Players.LocalPlayer.Character
- local Coins = 0
- while Coins < MaxCoins and CoinContainer.Parent do
- for i, Coin in pairs (CoinContainer:GetChildren()) do
- if Coin.Name == "Coin_Server" then
- Character.PrimaryPart.CFrame = CFrame.new(Coin.Position)
- wait(WaitTime)
- Coins = Coins + 1
- end
- end
- wait()
- end
- end
- game.Workspace.DescendantAdded:Connect(function(Instance)
- if Instance.Name == "CoinContainer" then
- OnNewRound(Instance)
- end
- end)
- local CoinContainer = game.Workspace:FindFirstChild("CoinContainer", true)
- if CoinContainer then
- OnNewRound(CoinContainer)
- end
- end)
- local Tab = Window:NewTab("Player")
- local Section = Tab:NewSection("Player")
- Section:NewSlider("WalkSpeed", "Makes You Able To Go Fater", 300, 16, function(s) -- 500 (MaxValue) | 0 (MinValue)
- game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s
- end)
- Section:NewSlider("JumpPower", "Makes You Able To Jump Higher", 500, 50, function(s) -- 500 (MaxValue) | 0 (MinValue)
- game.Players.LocalPlayer.Character.Humanoid.JumpPower = s
- end)
- Section:NewButton("Fly", "E To Toggle", function()
- repeat wait()
- until game.Players.LocalPlayer and game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:findFirstChild("HumanoidRootPart") and game.Players.LocalPlayer.Character:findFirstChild("Humanoid")
- local mouse = game.Players.LocalPlayer:GetMouse()
- repeat wait() until mouse
- local plr = game.Players.LocalPlayer
- local torso = plr.Character.HumanoidRootPart
- local flying = true
- local deb = true
- local ctrl = {f = 0, b = 0, l = 0, r = 0}
- local lastctrl = {f = 0, b = 0, l = 0, r = 0}
- local maxspeed = 50
- local speed = 0
- function Fly()
- local bg = Instance.new("BodyGyro", torso)
- bg.P = 9e4
- bg.maxTorque = Vector3.new(9e9, 9e9, 9e9)
- bg.cframe = torso.CFrame
- local bv = Instance.new("BodyVelocity", torso)
- bv.velocity = Vector3.new(0,0.1,0)
- bv.maxForce = Vector3.new(9e9, 9e9, 9e9)
- repeat wait()
- plr.Character.Humanoid.PlatformStand = true
- if ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0 then
- speed = speed+.5+(speed/maxspeed)
- if speed > maxspeed then
- speed = maxspeed
- end
- elseif not (ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0) and speed ~= 0 then
- speed = speed-1
- if speed < 0 then
- speed = 0
- end
- end
- if (ctrl.l + ctrl.r) ~= 0 or (ctrl.f + ctrl.b) ~= 0 then
- bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (ctrl.f+ctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(ctrl.l+ctrl.r,(ctrl.f+ctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed
- lastctrl = {f = ctrl.f, b = ctrl.b, l = ctrl.l, r = ctrl.r}
- elseif (ctrl.l + ctrl.r) == 0 and (ctrl.f + ctrl.b) == 0 and speed ~= 0 then
- bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (lastctrl.f+lastctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(lastctrl.l+lastctrl.r,(lastctrl.f+lastctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed
- else
- bv.velocity = Vector3.new(0,0.1,0)
- end
- bg.cframe = game.Workspace.CurrentCamera.CoordinateFrame * CFrame.Angles(-math.rad((ctrl.f+ctrl.b)*50*speed/maxspeed),0,0)
- until not flying
- ctrl = {f = 0, b = 0, l = 0, r = 0}
- lastctrl = {f = 0, b = 0, l = 0, r = 0}
- speed = 0
- bg:Destroy()
- bv:Destroy()
- plr.Character.Humanoid.PlatformStand = false
- end
- mouse.KeyDown:connect(function(key)
- if key:lower() == "e" then
- if flying then flying = false
- else
- flying = true
- Fly()
- end
- elseif key:lower() == "w" then
- ctrl.f = 1
- elseif key:lower() == "s" then
- ctrl.b = -1
- elseif key:lower() == "a" then
- ctrl.l = -1
- elseif key:lower() == "d" then
- ctrl.r = 1
- end
- end)
- mouse.KeyUp:connect(function(key)
- if key:lower() == "w" then
- ctrl.f = 0
- elseif key:lower() == "s" then
- ctrl.b = 0
- elseif key:lower() == "a" then
- ctrl.l = 0
- elseif key:lower() == "d" then
- ctrl.r = 0
- end
- end)
- Fly()
- end)
- Section:NewButton("Noclip", "Lets You Go Through Things", function()
- local Noclip = nil
- local Clip = nil
- function noclip()
- Clip = false
- local function Nocl()
- if Clip == false and game.Players.LocalPlayer.Character ~= nil then
- for _,v in pairs(game.Players.LocalPlayer.Character:GetDescendants()) do
- if v:IsA('BasePart') and v.CanCollide and v.Name ~= floatName then
- v.CanCollide = false
- end
- end
- end
- wait(0.21) -- basic optimization
- end
- Noclip = game:GetService('RunService').Stepped:Connect(Nocl)
- end
- function clip()
- if Noclip then Noclip:Disconnect() end
- Clip = true
- end
- noclip() -- to toggle noclip() and clip()
- end)
- local Tab = Window:NewTab("Miscellaneous")
- local Section = Tab:NewSection("Miscellaneous")
- Section:NewButton("InfYield", "Admin Commands", function()
- loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
- end)
- Section:NewButton("Fling Gui", "Prank Em John!", function()
- local lp = game:FindService("Players").LocalPlayer
- local function gplr(String)
- local Found = {}
- local strl = String:lower()
- if strl == "all" then
- for i,v in pairs(game:FindService("Players"):GetPlayers()) do
- table.insert(Found,v)
- end
- elseif strl == "others" then
- for i,v in pairs(game:FindService("Players"):GetPlayers()) do
- if v.Name ~= lp.Name then
- table.insert(Found,v)
- end
- end
- elseif strl == "me" then
- for i,v in pairs(game:FindService("Players"):GetPlayers()) do
- if v.Name == lp.Name then
- table.insert(Found,v)
- end
- end
- else
- for i,v in pairs(game:FindService("Players"):GetPlayers()) do
- if v.Name:lower():sub(1, #String) == String:lower() then
- table.insert(Found,v)
- end
- end
- end
- return Found
- end
- local function notif(str,dur)
- game:FindService("StarterGui"):SetCore("SendNotification", {
- Title = "yeet gui",
- Text = str,
- Icon = "rbxassetid://2005276185",
- Duration = dur or 3
- })
- end
- --// sds
- local h = Instance.new("ScreenGui")
- local Main = Instance.new("ImageLabel")
- local Top = Instance.new("Frame")
- local Title = Instance.new("TextLabel")
- local TextBox = Instance.new("TextBox")
- local TextButton = Instance.new("TextButton")
- h.Name = "h"
- h.Parent = game:GetService("CoreGui")
- h.ResetOnSpawn = false
- Main.Name = "Main"
- Main.Parent = h
- Main.Active = true
- Main.Draggable = true
- Main.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Main.BorderSizePixel = 0
- Main.Position = UDim2.new(0.174545452, 0, 0.459574461, 0)
- Main.Size = UDim2.new(0, 454, 0, 218)
- Main.Image = "rbxassetid://2005276185"
- Top.Name = "Top"
- Top.Parent = Main
- Top.BackgroundColor3 = Color3.fromRGB(57, 57, 57)
- Top.BorderSizePixel = 0
- Top.Size = UDim2.new(0, 454, 0, 44)
- Title.Name = "Title"
- Title.Parent = Top
- Title.BackgroundColor3 = Color3.fromRGB(49, 49, 49)
- Title.BorderSizePixel = 0
- Title.Position = UDim2.new(0, 0, 0.295454562, 0)
- Title.Size = UDim2.new(0, 454, 0, 30)
- Title.Font = Enum.Font.SourceSans
- Title.Text = "FE Yeet Gui (trollface edition)"
- Title.TextColor3 = Color3.fromRGB(255, 255, 255)
- Title.TextScaled = true
- Title.TextSize = 14.000
- Title.TextWrapped = true
- TextBox.Parent = Main
- TextBox.BackgroundColor3 = Color3.fromRGB(49, 49, 49)
- TextBox.BorderSizePixel = 0
- TextBox.Position = UDim2.new(0.0704845786, 0, 0.270642221, 0)
- TextBox.Size = UDim2.new(0, 388, 0, 62)
- TextBox.Font = Enum.Font.SourceSans
- TextBox.PlaceholderText = "Who do i destroy(can be shortened)"
- TextBox.Text = ""
- TextBox.TextColor3 = Color3.fromRGB(255, 255, 255)
- TextBox.TextScaled = true
- TextBox.TextSize = 14.000
- TextBox.TextWrapped = true
- TextButton.Parent = Main
- TextButton.BackgroundColor3 = Color3.fromRGB(49, 49, 49)
- TextButton.BorderSizePixel = 0
- TextButton.Position = UDim2.new(0.10352423, 0, 0.596330225, 0)
- TextButton.Size = UDim2.new(0, 359, 0, 50)
- TextButton.Font = Enum.Font.SourceSans
- TextButton.Text = "Cheese em'"
- TextButton.TextColor3 = Color3.fromRGB(255, 255, 255)
- TextButton.TextScaled = true
- TextButton.TextSize = 14.000
- TextButton.TextWrapped = true
- TextButton.MouseButton1Click:Connect(function()
- local Target = gplr(TextBox.Text)
- if Target[1] then
- Target = Target[1]
- local Thrust = Instance.new('BodyThrust', lp.Character.HumanoidRootPart)
- Thrust.Force = Vector3.new(9999,9999,9999)
- Thrust.Name = "YeetForce"
- repeat
- lp.Character.HumanoidRootPart.CFrame = Target.Character.HumanoidRootPart.CFrame
- Thrust.Location = Target.Character.HumanoidRootPart.Position
- game:FindService("RunService").Heartbeat:wait()
- until not Target.Character:FindFirstChild("Head")
- else
- notif("Invalid player")
- end
- end)
- --//fsddfsdf
- notif("Loaded successfully! Created by scuba#0001", 5)
- end)
- Section:NewButton("Synapse X Gui", "Synapse x", function()
- loadstring(game:HttpGet("https://raw.githubusercontent.com/AZYsGithub/Chillz-s-scripts/main/Synapse-X-Remake.lua"))()
- end)
- local Tab = Window:NewTab("Credits")
- local Section = Tab:NewSection("Credits")
- Section:NewLabel("Credits To Mclovinit184, My User. Enjoy This Script!")
- if game.PlaceId == 142823291 then
- Script()
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement