Advertisement
whyualwaylie

VENOM EXTRA tab

Apr 17th, 2020
694
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 9.69 KB | None | 0 0
  1. --[[
  2.     Venom Script Hub Game Tab
  3.     version: 1.0.0
  4.     build: 4.17.20.1
  5.     credits: whyualwaylie#6087
  6.     Extra:
  7.     Script Update: Auto
  8.     UI update: (Site Coming Soon)
  9.     !!
  10.     CC Venom Project, Python Studios 2020
  11. ]]--
  12. local version = '1.0.0'
  13.  
  14. function CR(player)
  15.     print("Special Thanks to "..player.." for helping Venom")
  16.     print("Helper of Venom "..version)
  17. end
  18.  
  19. -- Instances:
  20.  
  21. local VENOM_EXTRA_v1 = Instance.new("ScreenGui")
  22. local Main = Instance.new("Frame")
  23. local top = Instance.new("Frame")
  24. local icon = Instance.new("ImageLabel")
  25. local X = Instance.new("TextButton")
  26. local Body = Instance.new("Frame")
  27. local Local = Instance.new("Frame")
  28. local Label1 = Instance.new("TextLabel")
  29. local fly = Instance.new("TextButton")
  30. local btools = Instance.new("TextButton")
  31. local worldEater = Instance.new("TextButton")
  32. local TextLabel = Instance.new("TextLabel")
  33.  
  34. --Properties:
  35.  
  36. VENOM_EXTRA_v1.Name = "VENOM_EXTRA_v1"
  37. VENOM_EXTRA_v1.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  38. VENOM_EXTRA_v1.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  39.  
  40. Main.Name = "Main"
  41. Main.Parent = VENOM_EXTRA_v1
  42. Main.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  43. Main.BackgroundTransparency = 0.500
  44. Main.BorderSizePixel = 0
  45. Main.Position = UDim2.new(0.37487334, 0, 0.583665311, 0)
  46. Main.Size = UDim2.new(0, 583, 0, 199)
  47.  
  48. top.Name = "top"
  49. top.Parent = Main
  50. top.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  51. top.Size = UDim2.new(0, 583, 0, 50)
  52.  
  53. icon.Name = "icon"
  54. icon.Parent = top
  55. icon.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  56. icon.Position = UDim2.new(-0.000769883394, 0, -0.0163347125, 0)
  57. icon.Size = UDim2.new(0, 50, 0, 50)
  58. icon.Image = "rbxgameasset://Images/VenomThumbnail"
  59.  
  60. X.Name = "X"
  61. X.Parent = top
  62. X.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  63. X.Position = UDim2.new(0.941680968, 0, 0, 0)
  64. X.Size = UDim2.new(0, 34, 0, 30)
  65. X.Font = Enum.Font.GothamBold
  66. X.Text = "X"
  67. X.TextColor3 = Color3.fromRGB(0, 0, 0)
  68. X.TextScaled = true
  69. X.TextSize = 14.000
  70. X.TextWrapped = true
  71.  
  72. Body.Name = "Body"
  73. Body.Parent = Main
  74. Body.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  75. Body.BackgroundTransparency = 1.000
  76. Body.Position = UDim2.new(-0.00171526591, 0, 0.251256287, 0)
  77. Body.Size = UDim2.new(0, 584, 0, 148)
  78.  
  79. Local.Name = "Local"
  80. Local.Parent = Body
  81. Local.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  82. Local.BackgroundTransparency = 1.000
  83. Local.Size = UDim2.new(0, 244, 0, 148)
  84.  
  85. Label1.Name = "Label1"
  86. Label1.Parent = Local
  87. Label1.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  88. Label1.BackgroundTransparency = 1.000
  89. Label1.BorderSizePixel = 0
  90. Label1.Position = UDim2.new(-0.00134605169, 0, -0.00584000349, 0)
  91. Label1.Size = UDim2.new(0, 124, 0, 29)
  92. Label1.Font = Enum.Font.GothamBold
  93. Label1.Text = "Local Player"
  94. Label1.TextColor3 = Color3.fromRGB(0, 170, 0)
  95. Label1.TextScaled = true
  96. Label1.TextSize = 14.000
  97. Label1.TextWrapped = true
  98.  
  99. fly.Name = "fly"
  100. fly.Parent = Local
  101. fly.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  102. fly.BorderSizePixel = 0
  103. fly.Position = UDim2.new(0.0368852466, 0, 0.229729727, 0)
  104. fly.Size = UDim2.new(0, 114, 0, 21)
  105. fly.Font = Enum.Font.GothamBold
  106. fly.Text = "E To Fly"
  107. fly.TextColor3 = Color3.fromRGB(0, 170, 0)
  108. fly.TextScaled = true
  109. fly.TextSize = 14.000
  110. fly.TextWrapped = true
  111.  
  112. btools.Name = "btools"
  113. btools.Parent = Local
  114. btools.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  115. btools.BorderSizePixel = 0
  116. btools.Position = UDim2.new(0.0368852466, 0, 0.412162155, 0)
  117. btools.Size = UDim2.new(0, 114, 0, 21)
  118. btools.Font = Enum.Font.GothamBold
  119. btools.Text = "Btools"
  120. btools.TextColor3 = Color3.fromRGB(0, 170, 0)
  121. btools.TextScaled = true
  122. btools.TextSize = 14.000
  123. btools.TextWrapped = true
  124.  
  125. worldEater.Name = "worldEater"
  126. worldEater.Parent = Local
  127. worldEater.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  128. worldEater.BorderSizePixel = 0
  129. worldEater.Position = UDim2.new(0.0368852466, 0, 0.594594598, 0)
  130. worldEater.Size = UDim2.new(0, 114, 0, 21)
  131. worldEater.Font = Enum.Font.GothamBold
  132. worldEater.Text = "World Eater"
  133. worldEater.TextColor3 = Color3.fromRGB(0, 170, 0)
  134. worldEater.TextScaled = true
  135. worldEater.TextSize = 14.000
  136. worldEater.TextWrapped = true
  137.  
  138. TextLabel.Parent = Body
  139. TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  140. TextLabel.BackgroundTransparency = 1.000
  141. TextLabel.BorderSizePixel = 0
  142. TextLabel.Position = UDim2.new(0.373287678, 0, 0.141891897, 0)
  143. TextLabel.Size = UDim2.new(0, 339, 0, 101)
  144. TextLabel.Font = Enum.Font.SourceSans
  145. TextLabel.Text = "More Coming Soon   Venom BETA"
  146. TextLabel.TextColor3 = Color3.fromRGB(0, 255, 0)
  147. TextLabel.TextScaled = true
  148. TextLabel.TextSize = 14.000
  149. TextLabel.TextWrapped = true
  150.  
  151. -- Scripts:
  152.  
  153. local function UGHIRQI_fake_script() -- X.LocalScript
  154.     local script = Instance.new('LocalScript', X)
  155.  
  156.     script.Parent.MouseButton1Click:Connect(function()
  157.         script.Parent.Parent.Parent.Parent.Enabled = false
  158.     end)
  159. end
  160. coroutine.wrap(UGHIRQI_fake_script)()
  161. local function FBXRDON_fake_script() -- fly.LocalScript
  162.     local script = Instance.new('LocalScript', fly)
  163.  
  164.     script.Parent.MouseButton1Click:Connect(function()
  165.         repeat wait()
  166.         until game.Players.LocalPlayer and game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:findFirstChild("Torso") and game.Players.LocalPlayer.Character:findFirstChild("Humanoid")
  167.     local mouse = game.Players.LocalPlayer:GetMouse()
  168.     repeat wait() until mouse
  169.     local plr = game.Players.LocalPlayer
  170.     local torso = plr.Character.Torso
  171.     local flying = true
  172.     local deb = true
  173.     local ctrl = {f = 0, b = 0, l = 0, r = 0}
  174.     local lastctrl = {f = 0, b = 0, l = 0, r = 0}
  175.     local maxspeed = 50
  176.     local speed = 0
  177.    
  178.     function Fly()
  179.     local bg = Instance.new("BodyGyro", torso)
  180.     bg.P = 9e4
  181.     bg.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  182.     bg.cframe = torso.CFrame
  183.     local bv = Instance.new("BodyVelocity", torso)
  184.     bv.velocity = Vector3.new(0,0.1,0)
  185.     bv.maxForce = Vector3.new(9e9, 9e9, 9e9)
  186.     repeat wait()
  187.     plr.Character.Humanoid.PlatformStand = true
  188.     if ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0 then
  189.     speed = speed+.5+(speed/maxspeed)
  190.     if speed > maxspeed then
  191.     speed = maxspeed
  192.     end
  193.     elseif not (ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0) and speed ~= 0 then
  194.     speed = speed-1
  195.     if speed < 0 then
  196.     speed = 0
  197.     end
  198.     end
  199.     if (ctrl.l + ctrl.r) ~= 0 or (ctrl.f + ctrl.b) ~= 0 then
  200.     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
  201.     lastctrl = {f = ctrl.f, b = ctrl.b, l = ctrl.l, r = ctrl.r}
  202.     elseif (ctrl.l + ctrl.r) == 0 and (ctrl.f + ctrl.b) == 0 and speed ~= 0 then
  203.     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
  204.     else
  205.     bv.velocity = Vector3.new(0,0.1,0)
  206.     end
  207.     bg.cframe = game.Workspace.CurrentCamera.CoordinateFrame * CFrame.Angles(-math.rad((ctrl.f+ctrl.b)*50*speed/maxspeed),0,0)
  208.     until not flying
  209.     ctrl = {f = 0, b = 0, l = 0, r = 0}
  210.     lastctrl = {f = 0, b = 0, l = 0, r = 0}
  211.     speed = 0
  212.     bg:Destroy()
  213.     bv:Destroy()
  214.     plr.Character.Humanoid.PlatformStand = false
  215.     end
  216.     mouse.KeyDown:connect(function(key)
  217.     if key:lower() == "e" then
  218.     if flying then flying = false
  219.     else
  220.     flying = true
  221.     Fly()
  222.     end
  223.     elseif key:lower() == "w" then
  224.     ctrl.f = 1
  225.     elseif key:lower() == "s" then
  226.     ctrl.b = -1
  227.     elseif key:lower() == "a" then
  228.     ctrl.l = -1
  229.     elseif key:lower() == "d" then
  230.     ctrl.r = 1
  231.     end
  232.     end)
  233.     mouse.KeyUp:connect(function(key)
  234.     if key:lower() == "w" then
  235.     ctrl.f = 0
  236.     elseif key:lower() == "s" then
  237.     ctrl.b = 0
  238.     elseif key:lower() == "a" then
  239.     ctrl.l = 0
  240.     elseif key:lower() == "d" then
  241.     ctrl.r = 0
  242.     end
  243.     end)
  244.     Fly()
  245.     end)
  246. end
  247. coroutine.wrap(FBXRDON_fake_script)()
  248. local function OHGC_fake_script() -- btools.LocalScript
  249.     local script = Instance.new('LocalScript', btools)
  250.  
  251.     script.Parent.MouseButton1Click:Connect(function()
  252.         local player = game.Players.LocalPlayer
  253.         print("Getting Btools")
  254.         wait(2)
  255.         print("Drag Success")
  256.         a = Instance.new("HopperBin")
  257.         a.BinType = 1
  258.         a.Parent = game.Players.player.Backpack
  259.         wait(3)
  260.         print("Delete Success")
  261.         a = Instance.new("HopperBin")
  262.         a.BinType = 4
  263.         a.Parent = game.Players.player.Backpack
  264.         wait(3)
  265.         print("Copy Success")
  266.         a = Instance.new("HopperBin")
  267.         a.BinType = 3
  268.         a.Parent = game.Players.player.Backpack
  269.     end)
  270. end
  271. coroutine.wrap(OHGC_fake_script)()
  272. local function HGCYJ_fake_script() -- worldEater.LocalScript
  273.     local script = Instance.new('LocalScript', worldEater)
  274.  
  275.     script.Parent.MouseButton1Click:Connect(function()
  276.            
  277.        
  278.         local ScriptLink = [[https://pastebin.com/raw/84tLfhat]]
  279.        
  280.         local FeSource = nil;pcall(function()FeSource = game:GetService("HttpService"):GetAsync("https://raw.githubusercontent.com/WaverlyCole/FE-Compatibility-VoidSb-/master/translate.lua")end);
  281.         local ScriptSource = nil;pcall(function()ScriptSource = game:GetService("HttpService"):GetAsync(ScriptLink)end);
  282.         if not FeSource then error("Failed to grab update! Try again later.",0)end;if not ScriptSource then error("Failed to get link!",0)end;
  283.         local FeConversion = loadstring(FeSource);local FeSucc,FeErr = pcall(FeConversion);if not FeSucc then warn(FeErr)error("Failed to initiate! Try again later.",0) end;
  284.         local Script = loadstring(ScriptSource);local Succ,Err = pcall(Script);if not Succ then warn(Err)error("Error loading script.",0) end;
  285.     end)
  286. end
  287. coroutine.wrap(HGCYJ_fake_script)()
  288.  
  289. VENOM_EXTRA_v1.Draggable = true
  290. -- Print
  291.  
  292. print("Game Hub Loaded | Venom Script Hub")
  293.  
  294. -- Credit
  295. CR("whyualwaylie#6087")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement