xProScripter

eeeees

Mar 9th, 2021
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 15.13 KB | None | 0 0
  1. --[[ Dropdown:
  2. section1:addDropdown(
  3. "Dropdown",
  4. {"Hello", "World", "Hello World", "Word"},
  5. function(text)
  6. print("Selected", text)
  7. end
  8. )
  9. ]]
  10.  
  11. --[[ Button:
  12. sets:addButton(
  13. "Button",
  14. function()
  15. venyx:toggle()
  16. print("Clicked")
  17. end
  18. )
  19. ]]
  20.  
  21. --[[Toggle:
  22. section1:addToggle(
  23. "Toggle",
  24. nil,
  25. function(value)
  26. print("Toggled", value)
  27. end
  28. )
  29. ]]
  30.  
  31. --[[ Pages and Sections:
  32. local page = venyx:addPage("Page", 5012544693)
  33. local section = page:addSection("Section 1")
  34. ]]
  35.  
  36.  
  37.  
  38. local library = loadstring(game:HttpGet("https://keycheck1.000webhostapp.com/Venyx.lua"))()
  39. local venyx = library.new("AR Destroyer", 5013109572)
  40. local Coordinates = tostring(game.Players.LocalPlayer.Character.HumanoidRootPart.Position)
  41.  
  42. venyx:Notify("Keybind", "Press Right CTRL on your keyboard to hide/show GUI.")
  43.  
  44. local themes = {
  45. Background = Color3.fromRGB(24, 24, 24),
  46. Glow = Color3.fromRGB(0, 0, 0),
  47. Accent = Color3.fromRGB(10, 10, 10),
  48. LightContrast = Color3.fromRGB(20, 20, 20),
  49. DarkContrast = Color3.fromRGB(14, 14, 14),
  50. TextColor = Color3.fromRGB(255, 255, 255)
  51. }
  52.  
  53. -- features page
  54. local features = venyx:addPage("Features", 5012544693)
  55. local LP = features:addSection("Local Player")
  56. local DD = features:addSection("Teleports")
  57.  
  58. LP:addToggle(
  59. "Walk on Water",
  60. nil,
  61. function(value)
  62. local UIS = game:GetService("UserInputService")
  63.  
  64. local Enabled = value
  65.  
  66. workspace.Env.Ocean.CanCollide = value
  67. workspace.Env.Ocean.Size = Vector3.new(2000, 1, 2000)
  68. workspace.Env.Ocean.Mesh.Scale = Vector3.new(1, 1, 1)
  69.  
  70. game:GetService("RunService").RenderStepped:Connect(function()
  71. if Enabled then
  72. workspace.Env.Ocean.Position = Vector3.new(game.Players.LocalPlayer.Character.HumanoidRootPart.Position.X, 430, game.Players.LocalPlayer.Character.HumanoidRootPart.Position.Z)
  73. end
  74. end)
  75.  
  76. UIS.InputBegan:Connect(function(input, onGui)
  77. if onGui then return end
  78. if input.KeyCode == Enum.KeyCode.M then
  79. workspace.Env.Ocean.CanCollide = not workspace.Env.Ocean.CanCollide
  80. elseif input.KeyCode == Enum.KeyCode.L then
  81. Enabled = not Enabled
  82. if not Enabled then
  83. workspace.Env.Ocean.Size = Vector3.new(1, 1, 1)
  84. workspace.Env.Ocean.Mesh.Scale = Vector3.new(60000, 1, 60000)
  85. else
  86. workspace.Env.Ocean.Size = Vector3.new(2000, 1, 2000)
  87. workspace.Env.Ocean.Mesh.Scale = Vector3.new(1, 1, 1)
  88. end
  89. end
  90. end)
  91. end
  92. )
  93.  
  94. LP:addSlider(
  95. "Walk Speed (buggy)",
  96. 0,
  97. 16,
  98. 250,
  99. function(value)
  100. while wait(0.000000001) do
  101. pcall(function()
  102. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = value
  103. end)
  104. end
  105. end
  106. )
  107.  
  108. LP:addSlider(
  109. "Jump Power (buggy)",
  110. 0,
  111. 50,
  112. 500,
  113. function(value)
  114. while wait(0.000000001) do
  115. pcall(function()
  116. game.Players.LocalPlayer.Character.Humanoid.JumpPower = value
  117. end)
  118. end
  119. end
  120. )
  121.  
  122. DD:addDropdown("Teleport Seas", {"First Sea", "Second Sea", "Third Sea", "Northwester Sea"}, function(sea)
  123. if sea == "First Sea" then
  124. game:GetService("TeleportService"):Teleport(3099893649, game.Players.LocalPlayer)
  125. end
  126. if sea == "Second Sea" then
  127. game:GetService("TeleportService"):Teleport(4180357500, game.Players.LocalPlayer)
  128. end
  129. if sea == "Third Sea" then
  130. game:GetService("TeleportService"):Teleport(4592306011, game.Players.LocalPlayer)
  131. end
  132. if sea == "Northwestern Sea" then
  133. game:GetService("TeleportService"):Teleport(4571591616, game.Players.LocalPlayer)
  134. end
  135. end
  136. )
  137.  
  138. LP:addButton("Always Day", function()
  139. for i,v in pairs(game.Lighting:GetChildren()) do
  140. if v:IsA("ColorCorrectionEffect") or v:IsA("Sky") or v:IsA("BlurEffect") or v:IsA("BloomEffect") or v:IsA("SunRaysEffect") then
  141. v:Destroy()
  142. end
  143. end
  144.  
  145. game.Lighting.Ambient = Color3.fromRGB(255, 255, 255)
  146. game.Lighting.Brightness = 1
  147. game.Lighting.ClockTime = 14
  148. game.Lighting.ColorShift_Bottom = Color3.fromRGB(255, 255, 255)
  149. game.Lighting.ColorShift_Top = Color3.fromRGB(255, 255, 255)
  150. game.Lighting.ExposureCompensation = 0
  151. game.Lighting.FogColor = Color3.fromRGB(255, 255, 255)
  152. game.Lighting.FogEnd = 999999999
  153. game.Lighting.GeographicLatitude = 41.733
  154. game.Lighting.OutdoorAmbient = Color3.fromRGB(255, 255, 255)
  155. game.Lighting.GlobalShadows = true
  156. game.Lighting.Changed:Connect(function()
  157. game.Lighting.Ambient = Color3.fromRGB(255, 255, 255)
  158. game.Lighting.Brightness = 1
  159. game.Lighting.ClockTime = 14
  160. game.Lighting.ColorShift_Bottom = Color3.fromRGB(255, 255, 255)
  161. game.Lighting.ColorShift_Top = Color3.fromRGB(255, 255, 255)
  162. game.Lighting.ExposureCompensation = 0
  163. game.Lighting.FogColor = Color3.fromRGB(255, 255, 255)
  164. game.Lighting.FogEnd = 999999999
  165. game.Lighting.GeographicLatitude = 41.733
  166. game.Lighting.OutdoorAmbient = Color3.fromRGB(255, 255, 255)
  167. game.Lighting.GlobalShadows = true
  168. end)
  169. game.Lighting.DescendantAdded:Connect(function(obj)
  170. if obj:IsA("ColorCorrectionEffect") or obj:IsA("Sky") or obj:IsA("BlurEffect") or obj:IsA("BloomEffect") or obj:IsA("SunRaysEffect") then
  171. obj:Destroy()
  172. end
  173. end)
  174. end)
  175.  
  176. if game.PlaceId == 3099893649 then -- First sea
  177. DD:addDropdown("Teleport Islands", {"Newground's Island", "Ice Crown Island", "Graveyard", "Sea Cannon", "Kairo", "Savaria", "Boxing Island", "Freedrock Wilderness", "Doom Island", "Magic Fist Island", "Orange Island", "Wilderness", "Canopy Island", "Eve Island", "Mavist Island", "Lava Tower Isle", "Cumulus Island", "Sky Ring", "Verdies Shipwreck", "Fire Wizard"}, function(island)
  178. if island == "Newground's Island" then
  179. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-2138.74707, 452.847748, 28.2152691)
  180. end
  181. if island == "Ice Crown Island" then
  182. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-338.938477, 661.03125, -1607.09314)
  183. end
  184. if island == "Graveyard" then
  185. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1770.36157, 438.961731, -1438.86401)
  186. end
  187. if island == "Sea Cannon" then
  188. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(3115.09497, 437.206879, -569.38208)
  189. end
  190. if island == "Kairo" then
  191. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1210.36865, 517.961426, 1206.9718)
  192. end
  193. if island == "Savaria" then
  194. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(937.942017, 476.57663, 1683.00964)
  195. end
  196. if island == "Boxing Island" then
  197. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-256.222931, 539.25061, 3586.42578)
  198. end
  199. if island == "Freedrock Wilderness" then
  200. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-2620.13306, 583.992249, 4297.14063)
  201. end
  202. if island == "Doom Island" then
  203. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-2337.85522, 610.232483, 1509.1272)
  204. end
  205. if island == "Magic Fist Island" then
  206. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-2988.69995, 437.970032, -1628.73071)
  207. end
  208. if island == "Orange Island" then
  209. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-3649.37036, 448.11969, -5493.94043)
  210. end
  211. if island == "Wilderness" then
  212. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(982.860535, 492.428131, -7197.02393)
  213. end
  214. if island == "Canopy Island" then
  215. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(6270.00293, 465.212982, -1631.76086)
  216. end
  217. if island == "Eve Island" then
  218. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(2938.56348, 464.841034, 4919.89648)
  219. end
  220. if island == "Mavist Island" then
  221. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-746.167969, 672.045837, 6536.56445)
  222. end
  223. if island == "Lava Tower Isle" then
  224. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-5482.46924, 436.877777, 776.477356)
  225. end
  226. if island == "Sky Ring" then
  227. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(5525.14014, 1807.80896, -1285.30347)
  228. end
  229. if island == "Cumulus Island" then
  230. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(3165.08838, 1561.84473, -267.500854)
  231. end
  232. if island == "Verdies Shipwreck" then
  233. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(4260.97168, 1707.87195, -2020.95801)
  234. end
  235. if island == "Fire Wizard" then
  236. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1772.82556, 1592.48083, 1659.70508)
  237. end
  238. end
  239. )
  240. elseif game.PlaceId == 4180357500 then -- Second sea
  241. DD:addDropdown("Teleport Islands", {"Permafrost", "Judgement Isle", "Dawn's Refuge", "Miss Molly", "Ark Island", "Pillars", "Pillar's Top", "Wilderness", "Oblitesco", "Borealis Shipwreck", "Impact Island", "Trinity Oasis", "AG Base", "Theos Arena", "Altavista"}, function(island)
  242. if island == "Permafrost" then
  243. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-140.967987, 436.969696, -5293.22852)
  244. end
  245. if island == "Judgement Isle" then
  246. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(6701.64648, 495.924713, -12922.8369)
  247. end
  248. if island == "Dawn's Refuge" then
  249. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(3433.41675, 529.727051, -13698.627)
  250. end
  251. if island == "Miss Molly" then
  252. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(5695.0874, 480.842682, -13530.4307)
  253. end
  254. if island == "Ark Island" then
  255. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(4205.7666, 654.022644, -9980.75586)
  256. end
  257. if island == "Pillars" then
  258. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(4088.90698, 518.463196, -7499.25195)
  259. end
  260. if island == "Pillar's Top" then
  261. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(4078.38818, 1052.04675, -7531.07666)
  262. end
  263. if island == "Wilderness" then
  264. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(2235.30127, 462.208466, -8204.39551)
  265. end
  266. if island == "Wilderness" then
  267. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(5952.2085, 442.163818, -4756.70557)
  268. end
  269. if island == "Oblitesco" then
  270. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(5952.2085, 442.163818, -4756.70557)
  271. end
  272. if island == "Borealis Shipwreck" then
  273. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-6067.9126, 842.834656, -4546.146)
  274. end
  275. if island == "Impact Island" then
  276. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-7510.60107, 477.716766, -1407.7511)
  277. end
  278. if island == "Trinity Oasis" then
  279. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1665.95691, 480.122314, -904.297668)
  280. end
  281. if island == "AG BAse" then
  282. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1938.65063, 708.56488, 1295.30151)
  283. end
  284. if island == "Wilderness" then
  285. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(2492.63452, 517.592773, -1449.49878)
  286. end
  287. if island == "Theos Arena" then
  288. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(9669.99219, 438.536591, -11469.9922)
  289. end
  290. if island == "Altavista" then
  291. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(11258.5039, 597.53479, -6357.74463)
  292. end
  293. end
  294. )
  295. elseif game.PlaceId == 4592306011 then
  296. DD:addDropdown("Teleport Islands", {"Redwood Island", "Sunrise Ravine", "Whiteridge", "Highland Bandits", "AG Base", "Spires", "Sea Torment", "Alalae", "Angel's Arena", "Icicle Peak", "Sabura", "Cerulea", "Stormwall", "Stormwall Top", "Rupin's Arena"}, function(island)
  297. if island == "Redwood Island" then
  298. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(10759.4033, 451.909576, -4418.28955)
  299. end
  300. if island == "Sunrise Ravine" then
  301. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-11618.7148, 684.888245, -619.30603)
  302. end
  303. if island == "Whiteridge" then
  304. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-9438.38477, 464.508392, -1102.16638)
  305. end
  306. if island == "Highland Bandits" then
  307. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-8448.00195, 1065.68311, -1384.85876)
  308. end
  309. if island == "AG Base" then
  310. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-6444.17822, 475.612213, -5595.35547)
  311. end
  312. if island == "Spires" then
  313. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-14972.9834, 1215.49133, -93.2955475)
  314. end
  315. if island == "Sea Torment" then
  316. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-16974.416, 437.537659, 1651.09253)
  317. end
  318. if island == "Alalae" then
  319. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-16061.8467, 638.000061, -4501.53027)
  320. end
  321. if island == "Angel's Arena" then
  322. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-10539.5996, 574.834045, 4810.3916)
  323. end
  324. if island == "Icicle Peak" then
  325. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-13952.0625, 720.932922, 3721.6394)
  326. end
  327. if island == "Sabura" then
  328. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-5880.83936, 468.951813, 7588.10693)
  329. end
  330. if island == "Cerulea" then
  331. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-9995.33887, 2175.10327, 1529.22607)
  332. end
  333. if island == "Stormwall" then
  334. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-645.675659, 607.043884, 11880.8936)
  335. end
  336. if island == "Stormwall Top" then
  337. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-637.497253, 1770.61646, 11977.0664)
  338. end
  339. if island == "Rupin's Arena" then
  340. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-3387.40869, 585.542236, 2971.32544)
  341. end
  342. end
  343. )
  344. end
  345.  
  346. -- settings page
  347. local setting = venyx:addPage("Settings", 5012544693)
  348. local sets = setting:addSection("Settings")
  349. local colors = setting:addSection("Colors")
  350.  
  351. sets:addKeybind(
  352. "Toggle Keybind",
  353. Enum.KeyCode.RightControl,
  354. function()
  355. print("Activated Keybind")
  356. venyx:toggle()
  357. end,
  358. function()
  359. print("Changed Keybind")
  360. end
  361. )
  362.  
  363. sets:addTextbox(
  364. "Notification",
  365. "Default",
  366. function(value, focusLost)
  367. print("Input", value)
  368.  
  369. if focusLost then
  370. venyx:Notify("Notification", value)
  371. end
  372. end
  373. )
  374.  
  375. for setting, color in pairs(themes) do
  376. colors:addColorPicker(
  377. setting,
  378. color,
  379. function(color3)
  380. venyx:setTheme(setting, color3)
  381. end
  382. )
  383. end
  384.  
  385. -- credits page
  386. local creds = venyx:addPage("Credits", 5012544693)
  387. local credits = creds:addSection("Credits")
  388.  
  389. credits:addButton("UI Design by Denosaur on V3rmillion", function()
  390. setclipboard("https://v3rmillion.net/member.php?action=profile&uid=244024")
  391. venyx:Notify("Credits", "Copied V3rmillion account link.")
  392. end)
  393.  
  394. credits:addButton("Scripts made by Tyson#3377", function()
  395. setclipboard("Tyson#3377")
  396. venyx:Notify("Credits", "Copied Discord username.")
  397. end)
  398.  
  399. -- load
  400. venyx:SelectPage(venyx.pages[1], true)
Advertisement
Add Comment
Please, Sign In to add comment