Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local message = Instance.new("Message", workspace)
- message.Text = "Loading Epik_ Gui, please wait... (Gui toggle is Left Ctrl)"
- wait(6.9)
- message:remove()
- local gs_Players = game:FindService("Players") or game:GetService("Players")
- local ME = gs_Players.LocalPlayer
- local Library = loadstring(game:HttpGet("https://pastebin.com/raw/eWKgbdix"))()
- local Epik_ = Library:CreateWindow("Epik_ Gui")
- local EpikScript_ = Library:CreateWindow("Epik_ Gui")
- local function FindPlayer(loser)
- local plrs = {}
- for _, v in pairs(gs_Players:GetPlayers()) do
- if v.Name:lower():sub(1, #loser) == loser:lower() then
- table.insert(plrs, v)
- end
- end
- return plrs
- end
- Epik_:Section("Local Player")
- Epik_:Toggle("Noclip", {
- flag = "Noclip"
- })
- Epik_:Toggle("Infinite Jump", {
- flag = "InfJ"
- })
- Epik_:Toggle("Gravity", {
- flag = "Gravity"
- })
- Epik_:Toggle("WalkSpeed", {
- flag = "WalkSpeed"
- })
- Epik_:Toggle("JumpPower", {
- flag = "JumpPower"
- })
- Epik_:Slider("Gravity", {
- flag = "Gravity_E",
- min = 25,
- max = 500
- }, function()
- end)
- Epik_:Slider("WalkSpeed", {
- flag = "WS",
- min = 16,
- max = 500
- }, function()
- end)
- Epik_:Slider("JumpPower", {
- flag = "JP",
- min = 50,
- max = 500
- }, function()
- end)
- EpikScript_:Section("Script Hub")
- EpikScript_:Button("Anti-Afk", function()
- ME.Idled:Connect(function()
- pcall(function()
- game:GetService("VirtualInputManager"):SendMouseButtonEvent(0, 0, 0, true, game)
- wait(.1)
- game:GetService("VirtualInputManager"):SendMouseButtonEvent(0, 0, 0, false, game)
- end)
- end)
- print("Anti Afk Loaded.")
- end)
- EpikScript_:Button("TpTool", function()
- local TpTool = Instance.new("Tool", ME.Backpack)
- TpTool.Name = "TpTool"
- TpTool.RequiresHandle = false
- TpTool.TextureId = "rbxassetid://3123961467"
- TpTool.ToolTip = "Teleport Tool"
- TpTool.Activated:Connect(function()
- local F = ME:GetMouse().Hit + Vector3.new(0, 3, 0)
- F = CFrame.new(F.X, F.Y, F.Z)
- ME.Character.HumanoidRootPart.CFrame = F
- end)
- end)
- EpikScript_:Button("BTools", function()
- Instance.new("HopperBin", ME.Backpack).BinType = 2
- Instance.new("HopperBin", ME.Backpack).BinType = 3
- Instance.new("HopperBin", ME.Backpack).BinType = 4
- end)
- EpikScript_:Button("Hunter Reviz", function()
- pcall(loadstring(game:HttpGet("https://pastebin.com/raw/NjDVKgu7")))
- end)
- EpikScript_:Button("Potato Hub", function()
- if not pcall(syn.write_clipboard, "test") then
- pcall(loadstring(game:HttpGet("https://www.potato-hub.com/PotatoHubLite.lua")))
- else
- pcall(loadstring(game:HttpGet("https://www.potato-hub.com/PotatoHubFull.lua")))
- end
- end)
- EpikScript_:Button("Psyhub", function()
- pcall(loadstring(rawget(game:GetObjects("rbxassetid://3014051754"), 1).Source))
- end)
- EpikScript_:Button("Owl Hub", function()
- pcall(loadstring(game:HttpGet("https://raw.githubusercontent.com/CriShoux/OwlHub/master/OwlHub.txt")))
- end)
- EpikScript_:Button("Filtershark", function()
- pcall(loadstring(game:HttpGet("https://pastebin.com/raw/aXawi4QE")))
- end)
- EpikScript_:Button("Punch Kill", function()
- pcall(loadstring(game:HttpGet("https://pastebin.com/raw/3rC4hmMG")))
- end)
- EpikScript_:Button("Project Bullshit v2", function()
- pcall(loadstring(game:HttpGet("https://pastebin.com/raw/q2a19YH9")))
- end)
- EpikScript_:Button("Fathom Hub", function()
- pcall(loadstring(game:HttpGet("https://pastebin.com/raw/UmhaEvTT")))
- end)
- game:GetService("RunService").Stepped:Connect(function()
- if Epik_.flags.Noclip then
- if ME.Character ~= nil then
- ME.Character.Humanoid:ChangeState(11)
- end
- end
- if Epik_.flags.WalkSpeed then
- ME.Character.Humanoid.WalkSpeed = Epik_.flags.WS
- else
- ME.Character.Humanoid.WalkSpeed = 16
- end
- if Epik_.flags.JumpPower then
- ME.Character.Humanoid.JumpPower = Epik_.flags.JP
- else
- ME.Character.Humanoid.JumpPower = 50
- end
- if Epik_.flags.Gravity then
- workspace.Gravity = Epik_.flags.Gravity_E
- else
- workspace.Gravity = 196.19999694828
- end
- end)
- game:GetService("UserInputService").JumpRequest:connect(function()
- if Epik_.flags.InfJ then
- if ME.Character ~= nil then
- ME.Character:FindFirstChildOfClass("Humanoid"):ChangeState("Jumping")
- end
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement