Advertisement
RageRelicYT

Untitled

Dec 21st, 2021
24
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.07 KB | None | 0 0
  1. --GENHUB SURVIVE AND KILL. NOT ALL SCRIPTS ARE BY ME CREDITS TO ORIGINAL OWNERS
  2.  
  3. local library = loadstring(game:HttpGet("https://raw.githubusercontent.com/GreenDeno/Venyx-UI-Library/main/source.lua"))()
  4. local GenHub = library.new("Survive and kill the killers - GenHub - By AryanAgain#5617", GenHub)
  5.  
  6. -- themes
  7. local themes = {
  8. Background = Color3.fromRGB(24, 24, 24),
  9. Glow = Color3.fromRGB(0, 0, 0),
  10. Accent = Color3.fromRGB(10, 10, 10),
  11. LightContrast = Color3.fromRGB(20, 20, 20),
  12. DarkContrast = Color3.fromRGB(14, 14, 14),
  13. TextColor = Color3.fromRGB(255, 255, 255)
  14. }
  15.  
  16. -- Tab Main
  17. local Main = GenHub:addPage("Main", 5012544693)
  18. local scripts = Main:addSection("Scripts")
  19.  
  20. scripts:addButton("Infinite Jump", function()
  21. print("Clicked")
  22. loadstring(game:HttpGet("https://pastebin.com/raw/wbar4sYr"))()
  23. end)
  24.  
  25. scripts:addButton("Infinite Yield", function()
  26. print("Clicked")
  27. loadstring(game:HttpGet("https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source"))()
  28. end)
  29.  
  30. scripts:addButton("Ctrl Click Tp", function()
  31. print("Clicked")
  32. loadstring(game:HttpGet("https://pastebin.com/raw/m6wLUgqv"))()
  33. end)
  34.  
  35. scripts:addButton("E To Noclip", function()
  36. print("Clicked")
  37. loadstring(game:HttpGet("https://pastebin.pl/view/raw/f2ed48df"))()
  38. end)
  39.  
  40. scripts:addButton("Freecam (Shift + P)", function()
  41. print("Clicked")
  42. loadstring(game:HttpGet("https://pastebin.pl/view/raw/e397e743"))()
  43. end)
  44.  
  45. --Teleports
  46. local teleports = GenHub:addPage("Teleports", 5012544693)
  47. local teleport_guns = teleports:addSection("Guns")
  48.  
  49. teleport_guns:addButton("Ray Gun", function()
  50. local x = 231.32
  51. local y = 373.5
  52. local z = 39.78
  53. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(x,y,z))
  54. end)
  55.  
  56. teleport_guns:addButton("Shotgun", function()
  57. local x = 138.7
  58. local y = 333.5
  59. local z = 499.25
  60. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(x,y,z))
  61. end)
  62.  
  63. teleport_guns:addButton("Sub Machine", function()
  64. local x = 112.07
  65. local y = 335.5
  66. local z = 556
  67. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(x,y,z))
  68. end)
  69.  
  70. teleport_guns:addButton("Sniper", function()
  71. local x = 184.08
  72. local y = 306.5
  73. local z = 176.32
  74. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(x,y,z))
  75. end)
  76.  
  77. teleport_guns:addButton("Pistol", function()
  78. local x = 61
  79. local y = 219.5
  80. local z = 263.4
  81. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(x,y,z))
  82. end)
  83.  
  84. teleport_guns:addButton("M16", function()
  85. local x = 3.7
  86. local y = 267.7
  87. local z = 184.3
  88. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(x,y,z))
  89. end)
  90.  
  91. --LocalPlayer
  92. local LocalUser = GenHub:addPage("LocalPlayer", 5012544693)
  93. local WalkSpeedAndJumpPower = LocalUser:addSection("WalkSpeed And JumpPower")
  94.  
  95. WalkSpeedAndJumpPower:addSlider("WalkSpeed", 16, 1, 500, function(s1)
  96. print("Clicked")
  97. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s1
  98. end)
  99.  
  100. WalkSpeedAndJumpPower:addSlider("JumpPower", 50, 1, 500, function(s2)
  101. print("Clicked")
  102. game.Players.LocalPlayer.Character.Humanoid.JumpPower = s2
  103. end)
  104.  
  105. WalkSpeedAndJumpPower:addButton("Default WalkSpeed", function()
  106. print("Clicked")
  107. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
  108. end)
  109.  
  110. WalkSpeedAndJumpPower:addButton("Default JumpPower", function()
  111. print("Clicked")
  112. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50
  113. end)
  114.  
  115. --Settings
  116. local themeandsettings = GenHub:addPage("Settings", 5012544693)
  117. local gui = themeandsettings:addSection("Gui")
  118.  
  119. for theme, color in pairs(themes) do -- all in one theme changer, i know, im cool
  120. gui:addColorPicker(theme, color, function(color3)
  121. GenHub:setTheme(theme, color3)
  122. end)
  123. end
  124.  
  125. gui:addKeybind("Toggle Keybind", Enum.KeyCode.RightControl, function()
  126. print("Activated Keybind")
  127. GenHub:toggle()
  128. end, function()
  129. print("Changed Keybind")
  130. end)
  131.  
  132. -- load
  133. GenHub:SelectPage(GenHub.pages[1], true)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement