Advertisement
xTh3_Hunter

[FE] Epik_ Gui (Roblox)

Feb 3rd, 2020
4,643
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 4.42 KB | None | 0 0
  1. local message = Instance.new("Message", workspace)
  2. message.Text = "Loading Epik_ Gui, please wait... (Gui toggle is Left Ctrl)"
  3. wait(6.9)
  4. message:remove()
  5. local gs_Players = game:FindService("Players") or game:GetService("Players")
  6. local ME = gs_Players.LocalPlayer
  7. local Library = loadstring(game:HttpGet("https://pastebin.com/raw/eWKgbdix"))()
  8. local Epik_ = Library:CreateWindow("Epik_ Gui")
  9. local EpikScript_ = Library:CreateWindow("Epik_ Gui")
  10. local function FindPlayer(loser)
  11.     local plrs = {}
  12.     for _, v in pairs(gs_Players:GetPlayers()) do
  13.         if v.Name:lower():sub(1, #loser) == loser:lower() then
  14.             table.insert(plrs, v)
  15.         end
  16.     end
  17.     return plrs
  18. end
  19. Epik_:Section("Local Player")
  20. Epik_:Toggle("Noclip", {
  21.     flag = "Noclip"
  22. })
  23. Epik_:Toggle("Infinite Jump", {
  24.     flag = "InfJ"
  25. })
  26. Epik_:Toggle("Gravity", {
  27.     flag = "Gravity"
  28. })
  29. Epik_:Toggle("WalkSpeed", {
  30.     flag = "WalkSpeed"
  31. })
  32. Epik_:Toggle("JumpPower", {
  33.     flag = "JumpPower"
  34. })
  35. Epik_:Slider("Gravity", {
  36.     flag = "Gravity_E",
  37.     min = 25,
  38.     max = 500
  39. }, function()
  40. end)
  41. Epik_:Slider("WalkSpeed", {
  42.     flag = "WS",
  43.     min = 16,
  44.     max = 500
  45. }, function()
  46. end)
  47. Epik_:Slider("JumpPower", {
  48.     flag = "JP",
  49.     min = 50,
  50.     max = 500
  51. }, function()
  52. end)
  53. EpikScript_:Section("Script Hub")
  54. EpikScript_:Button("Anti-Afk", function()
  55.     ME.Idled:Connect(function()
  56.         pcall(function()
  57.             game:GetService("VirtualInputManager"):SendMouseButtonEvent(0, 0, 0, true, game)
  58.             wait(.1)
  59.             game:GetService("VirtualInputManager"):SendMouseButtonEvent(0, 0, 0, false, game)
  60.         end)
  61.     end)
  62.     print("Anti Afk Loaded.")
  63. end)
  64. EpikScript_:Button("TpTool", function()
  65.     local TpTool = Instance.new("Tool", ME.Backpack)
  66.     TpTool.Name = "TpTool"
  67.     TpTool.RequiresHandle = false
  68.     TpTool.TextureId = "rbxassetid://3123961467"
  69.     TpTool.ToolTip = "Teleport Tool"
  70.     TpTool.Activated:Connect(function()
  71.         local F = ME:GetMouse().Hit + Vector3.new(0, 3, 0)
  72.         F = CFrame.new(F.X, F.Y, F.Z)
  73.         ME.Character.HumanoidRootPart.CFrame = F
  74.     end)
  75. end)
  76. EpikScript_:Button("BTools", function()
  77.     Instance.new("HopperBin", ME.Backpack).BinType = 2
  78.     Instance.new("HopperBin", ME.Backpack).BinType = 3
  79.     Instance.new("HopperBin", ME.Backpack).BinType = 4
  80. end)
  81. EpikScript_:Button("Hunter Reviz", function()
  82.     pcall(loadstring(game:HttpGet("https://pastebin.com/raw/NjDVKgu7")))
  83. end)
  84. EpikScript_:Button("Potato Hub", function()
  85.     if not pcall(syn.write_clipboard, "test") then
  86.         pcall(loadstring(game:HttpGet("https://www.potato-hub.com/PotatoHubLite.lua")))
  87.     else
  88.         pcall(loadstring(game:HttpGet("https://www.potato-hub.com/PotatoHubFull.lua")))
  89.     end
  90. end)
  91. EpikScript_:Button("Psyhub", function()
  92.     pcall(loadstring(rawget(game:GetObjects("rbxassetid://3014051754"), 1).Source))
  93. end)
  94. EpikScript_:Button("Owl Hub", function()
  95.     pcall(loadstring(game:HttpGet("https://raw.githubusercontent.com/CriShoux/OwlHub/master/OwlHub.txt")))
  96. end)
  97. EpikScript_:Button("Filtershark", function()
  98.     pcall(loadstring(game:HttpGet("https://pastebin.com/raw/aXawi4QE")))
  99. end)
  100. EpikScript_:Button("Punch Kill", function()
  101.     pcall(loadstring(game:HttpGet("https://pastebin.com/raw/3rC4hmMG")))
  102. end)
  103. EpikScript_:Button("Project Bullshit v2", function()
  104.     pcall(loadstring(game:HttpGet("https://pastebin.com/raw/q2a19YH9")))
  105. end)
  106. EpikScript_:Button("Fathom Hub", function()
  107.     pcall(loadstring(game:HttpGet("https://pastebin.com/raw/UmhaEvTT")))
  108. end)
  109. game:GetService("RunService").Stepped:Connect(function()
  110.     if Epik_.flags.Noclip then
  111.         if ME.Character ~= nil then
  112.             ME.Character.Humanoid:ChangeState(11)
  113.         end
  114.     end
  115.     if Epik_.flags.WalkSpeed then
  116.         ME.Character.Humanoid.WalkSpeed = Epik_.flags.WS
  117.     else
  118.         ME.Character.Humanoid.WalkSpeed = 16
  119.     end
  120.     if Epik_.flags.JumpPower then
  121.         ME.Character.Humanoid.JumpPower = Epik_.flags.JP
  122.     else
  123.         ME.Character.Humanoid.JumpPower = 50
  124.     end
  125.     if Epik_.flags.Gravity then
  126.         workspace.Gravity = Epik_.flags.Gravity_E
  127.     else
  128.         workspace.Gravity = 196.19999694828
  129.     end
  130. end)
  131. game:GetService("UserInputService").JumpRequest:connect(function()
  132.     if Epik_.flags.InfJ then
  133.         if ME.Character ~= nil then
  134.             ME.Character:FindFirstChildOfClass("Humanoid"):ChangeState("Jumping")
  135.         end
  136.     end
  137. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement