Advertisement
whyualwaylie

Venom Game Hub v1 (3 games!)

Apr 17th, 2020
716
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 4.76 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_GAME_HUB = Instance.new("ScreenGui")
  22. local Frame = Instance.new("Frame")
  23. local logo = Instance.new("ImageLabel")
  24. local filltop = Instance.new("Frame")
  25. local Jailbreak = Instance.new("TextButton")
  26. local PrisonLife = Instance.new("TextButton")
  27. local MM2 = Instance.new("TextButton")
  28. local X = Instance.new("TextButton")
  29. local TextLabel = Instance.new("TextLabel")
  30.  
  31. --Properties:
  32.  
  33. VENOM_GAME_HUB.Name = "VENOM_GAME_HUB"
  34. VENOM_GAME_HUB.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  35. VENOM_GAME_HUB.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  36.  
  37. Frame.Parent = VENOM_GAME_HUB
  38. Frame.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  39. Frame.BackgroundTransparency = 0.500
  40. Frame.Position = UDim2.new(0.0587639138, 0, 0.0776892453, 0)
  41. Frame.Size = UDim2.new(0, 390, 0, 240)
  42.  
  43. logo.Name = "logo"
  44. logo.Parent = VENOM_GAME_HUB
  45. logo.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  46. logo.Position = UDim2.new(0.0577507615, 0, 0.0776892453, 0)
  47. logo.Size = UDim2.new(0, 50, 0, 50)
  48. logo.Image = "rbxgameasset://Images/VenomThumbnail"
  49.  
  50. filltop.Name = "filltop"
  51. filltop.Parent = VENOM_GAME_HUB
  52. filltop.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  53. filltop.Position = UDim2.new(0.108409323, 0, 0.0776892453, 0)
  54. filltop.Size = UDim2.new(0, 341, 0, 50)
  55.  
  56. Jailbreak.Name = "Jailbreak"
  57. Jailbreak.Parent = VENOM_GAME_HUB
  58. Jailbreak.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  59. Jailbreak.Position = UDim2.new(0.0699088201, 0, 0.207171321, 0)
  60. Jailbreak.Size = UDim2.new(0, 64, 0, 38)
  61. Jailbreak.Font = Enum.Font.GothamBold
  62. Jailbreak.Text = "Jailbreak GUI"
  63. Jailbreak.TextColor3 = Color3.fromRGB(0, 170, 0)
  64. Jailbreak.TextScaled = true
  65. Jailbreak.TextSize = 14.000
  66. Jailbreak.TextWrapped = true
  67.  
  68. PrisonLife.Name = "PrisonLife"
  69. PrisonLife.Parent = VENOM_GAME_HUB
  70. PrisonLife.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  71. PrisonLife.Position = UDim2.new(0.0699088201, 0, 0.308764935, 0)
  72. PrisonLife.Size = UDim2.new(0, 64, 0, 38)
  73. PrisonLife.Font = Enum.Font.GothamBold
  74. PrisonLife.Text = "Prison Life 2.0 GUI"
  75. PrisonLife.TextColor3 = Color3.fromRGB(0, 170, 0)
  76. PrisonLife.TextScaled = true
  77. PrisonLife.TextSize = 14.000
  78. PrisonLife.TextWrapped = true
  79.  
  80. MM2.Name = "MM2"
  81. MM2.Parent = VENOM_GAME_HUB
  82. MM2.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  83. MM2.Position = UDim2.new(0.0699088201, 0, 0.406374514, 0)
  84. MM2.Size = UDim2.new(0, 64, 0, 38)
  85. MM2.Font = Enum.Font.GothamBold
  86. MM2.Text = "MM2 GUI"
  87. MM2.TextColor3 = Color3.fromRGB(0, 170, 0)
  88. MM2.TextScaled = true
  89. MM2.TextSize = 14.000
  90. MM2.TextWrapped = true
  91.  
  92. X.Name = "X"
  93. X.Parent = VENOM_GAME_HUB
  94. X.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  95. X.Position = UDim2.new(0.423505574, 0, 0.0776892453, 0)
  96. X.Size = UDim2.new(0, 30, 0, 25)
  97. X.Font = Enum.Font.GothamBold
  98. X.Text = "X"
  99. X.TextColor3 = Color3.fromRGB(0, 0, 0)
  100. X.TextScaled = true
  101. X.TextSize = 14.000
  102. X.TextWrapped = true
  103.  
  104. TextLabel.Parent = VENOM_GAME_HUB
  105. TextLabel.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  106. TextLabel.Position = UDim2.new(0.192502528, 0, 0.296812743, 0)
  107. TextLabel.Size = UDim2.new(0, 200, 0, 50)
  108. TextLabel.Font = Enum.Font.GothamBold
  109. TextLabel.Text = "More Coming Soon!"
  110. TextLabel.TextColor3 = Color3.fromRGB(0, 170, 0)
  111. TextLabel.TextScaled = true
  112. TextLabel.TextSize = 14.000
  113. TextLabel.TextWrapped = true
  114.  
  115. -- Scripts:
  116.  
  117. local function CDRH_fake_script() -- Jailbreak.Script
  118.     local script = Instance.new('Script', Jailbreak)
  119.  
  120.     script.Parent.MouseButton1Click:Connect(function()
  121.         loadstring(game:HttpGet("https://pastebin.com/raw/fFNaeC4L", true))()
  122.     end)
  123. end
  124. coroutine.wrap(CDRH_fake_script)()
  125. local function RSIRJWL_fake_script() -- PrisonLife.Script
  126.     local script = Instance.new('Script', PrisonLife)
  127.  
  128.     script.Parent.MouseButton1Click:Connect(function()
  129.         loadstring(game:HttpGet("https://pastebin.com/raw/dqXFTZEi", true))()
  130.     end)
  131. end
  132. coroutine.wrap(RSIRJWL_fake_script)()
  133. local function KGEHEK_fake_script() -- MM2.Script
  134.     local script = Instance.new('Script', MM2)
  135.  
  136.     script.Parent.MouseButton1Click:Connect(function()
  137.         loadstring(game:HttpGet("https://pastebin.com/raw/AqHn1jR1", true))()
  138.     end)
  139. end
  140. coroutine.wrap(KGEHEK_fake_script)()
  141. local function ZYWDTW_fake_script() -- X.LocalScript
  142.     local script = Instance.new('LocalScript', X)
  143.  
  144.     script.Parent.MouseButton1Click:Connect(function()
  145.         script.Parent.Parent.Enabled = false
  146.     end)
  147. end
  148. coroutine.wrap(ZYWDTW_fake_script)()
  149.  
  150. -- Print
  151.  
  152. print("Extra Tab Loaded | Venom Script Hub")
  153.  
  154. -- Credit
  155. CR("whyualwaylie#6087")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement