xProScripter

AR Gui

Feb 27th, 2021 (edited)
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 22.45 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("ArcaneRapist", 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. This is still a W.I.P project.")
  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. local CC = features:addSection("Character Creator")
  58.  
  59. LP:addToggle(
  60.     "Walk on Water",
  61.     nil,
  62.     function(value)
  63.         local UIS = game:GetService("UserInputService")
  64.  
  65.         local Enabled = value
  66.  
  67.         workspace.Env.Ocean.CanCollide = value
  68.         workspace.Env.Ocean.Size = Vector3.new(2000, 1, 2000)
  69.         workspace.Env.Ocean.Mesh.Scale = Vector3.new(1, 1, 1)
  70.  
  71.         game:GetService("RunService").RenderStepped:Connect(function()
  72.             if Enabled then
  73.                 workspace.Env.Ocean.Position = Vector3.new(game.Players.LocalPlayer.Character.HumanoidRootPart.Position.X, 430, game.Players.LocalPlayer.Character.HumanoidRootPart.Position.Z)
  74.             end
  75.         end)
  76.  
  77.         UIS.InputBegan:Connect(function(input, onGui)
  78.             if onGui then return end
  79.             if input.KeyCode == Enum.KeyCode.M then
  80.                 workspace.Env.Ocean.CanCollide = not workspace.Env.Ocean.CanCollide
  81.             elseif input.KeyCode == Enum.KeyCode.L then
  82.                 Enabled = not Enabled
  83.                 if not Enabled then
  84.                     workspace.Env.Ocean.Size = Vector3.new(1, 1, 1)
  85.                     workspace.Env.Ocean.Mesh.Scale = Vector3.new(60000, 1, 60000)
  86.                 else
  87.                     workspace.Env.Ocean.Size = Vector3.new(2000, 1, 2000)
  88.                     workspace.Env.Ocean.Mesh.Scale = Vector3.new(1, 1, 1)
  89.                 end
  90.             end
  91.         end)
  92.     end
  93. )
  94.  
  95. LP:addSlider(
  96.     "Walk Speed (buggy)",
  97.     0,
  98.     16,
  99.     250,
  100.     function(value)
  101.         while wait(0.000000001) do
  102.             pcall(function()
  103.                 game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = value
  104.             end)
  105.         end
  106.     end
  107. )
  108.  
  109. LP:addSlider(
  110.     "Jump Power (buggy)",
  111.     0,
  112.     50,
  113.     500,
  114.     function(value)
  115.         while wait(0.000000001) do
  116.             pcall(function()
  117.                 game.Players.LocalPlayer.Character.Humanoid.JumpPower = value
  118.             end)
  119.         end
  120.     end
  121. )
  122.  
  123. DD:addDropdown("Teleport Seas", {"First Sea", "Second Sea", "Third Sea", "Northwester Sea"}, function(sea)
  124.     if sea == "First Sea" then
  125.         game:GetService("TeleportService"):Teleport(3099893649, game.Players.LocalPlayer)
  126.     end
  127.     if sea == "Second Sea" then
  128.         game:GetService("TeleportService"):Teleport(4180357500, game.Players.LocalPlayer)
  129.     end
  130.     if sea == "Third Sea" then
  131.         game:GetService("TeleportService"):Teleport(4592306011, game.Players.LocalPlayer)
  132.     end
  133.     if sea == "Northwestern Sea" then
  134.         game:GetService("TeleportService"):Teleport(4571591616, game.Players.LocalPlayer)
  135.     end
  136. end
  137. )
  138.  
  139. LP:addButton("Always Day", function()
  140.     for i,v in pairs(game.Lighting:GetChildren()) do
  141.         if v:IsA("ColorCorrectionEffect") or v:IsA("Sky") or v:IsA("BlurEffect") or v:IsA("BloomEffect") or v:IsA("SunRaysEffect") then
  142.             v:Destroy()
  143.         end
  144.     end
  145.  
  146.     game.Lighting.Ambient = Color3.fromRGB(255, 255, 255)
  147.     game.Lighting.Brightness = 1
  148.     game.Lighting.ClockTime = 14
  149.     game.Lighting.ColorShift_Bottom = Color3.fromRGB(255, 255, 255)
  150.     game.Lighting.ColorShift_Top = Color3.fromRGB(255, 255, 255)
  151.     game.Lighting.ExposureCompensation = 0
  152.     game.Lighting.FogColor = Color3.fromRGB(255, 255, 255)
  153.     game.Lighting.FogEnd = 999999999
  154.     game.Lighting.GeographicLatitude = 41.733
  155.     game.Lighting.OutdoorAmbient = Color3.fromRGB(255, 255, 255)
  156.     game.Lighting.GlobalShadows = true
  157.     game.Lighting.Changed:Connect(function()
  158.         game.Lighting.Ambient = Color3.fromRGB(255, 255, 255)
  159.         game.Lighting.Brightness = 1
  160.         game.Lighting.ClockTime = 14
  161.         game.Lighting.ColorShift_Bottom = Color3.fromRGB(255, 255, 255)
  162.         game.Lighting.ColorShift_Top = Color3.fromRGB(255, 255, 255)
  163.         game.Lighting.ExposureCompensation = 0
  164.         game.Lighting.FogColor = Color3.fromRGB(255, 255, 255)
  165.         game.Lighting.FogEnd = 999999999
  166.         game.Lighting.GeographicLatitude = 41.733
  167.         game.Lighting.OutdoorAmbient = Color3.fromRGB(255, 255, 255)
  168.         game.Lighting.GlobalShadows = true
  169.     end)
  170.     game.Lighting.DescendantAdded:Connect(function(obj)
  171.         if obj:IsA("ColorCorrectionEffect") or obj:IsA("Sky") or obj:IsA("BlurEffect") or obj:IsA("BloomEffect") or obj:IsA("SunRaysEffect") then
  172.             obj:Destroy()
  173.         end
  174.     end)
  175. end)
  176.  
  177. if game.PlaceId == 3099893649 then -- First sea
  178.     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)
  179.         if island == "Newground's Island" then
  180.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-2138.74707, 452.847748, 28.2152691)
  181.         end
  182.         if island == "Ice Crown Island" then
  183.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-338.938477, 661.03125, -1607.09314)
  184.         end
  185.         if island == "Graveyard" then
  186.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1770.36157, 438.961731, -1438.86401)
  187.         end
  188.         if island == "Sea Cannon" then
  189.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(3115.09497, 437.206879, -569.38208)
  190.         end
  191.         if island == "Kairo" then
  192.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1210.36865, 517.961426, 1206.9718)
  193.         end
  194.         if island == "Savaria" then
  195.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(937.942017, 476.57663, 1683.00964)
  196.         end
  197.         if island == "Boxing Island" then
  198.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-256.222931, 539.25061, 3586.42578)
  199.         end
  200.         if island == "Freedrock Wilderness" then
  201.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-2620.13306, 583.992249, 4297.14063)
  202.         end
  203.         if island == "Doom Island" then
  204.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-2337.85522, 610.232483, 1509.1272)
  205.         end
  206.         if island == "Magic Fist Island" then
  207.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-2988.69995, 437.970032, -1628.73071)
  208.         end
  209.         if island == "Orange Island" then
  210.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-3649.37036, 448.11969, -5493.94043)
  211.         end
  212.         if island == "Wilderness" then
  213.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(982.860535, 492.428131, -7197.02393)
  214.         end
  215.         if island == "Canopy Island" then
  216.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(6270.00293, 465.212982, -1631.76086)
  217.         end
  218.         if island == "Eve Island" then
  219.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(2938.56348, 464.841034, 4919.89648)
  220.         end
  221.         if island == "Mavist Island" then
  222.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-746.167969, 672.045837, 6536.56445)
  223.         end
  224.         if island == "Lava Tower Isle" then
  225.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-5482.46924, 436.877777, 776.477356)
  226.         end
  227.         if island == "Sky Ring" then
  228.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(5525.14014, 1807.80896, -1285.30347)
  229.         end
  230.         if island == "Cumulus Island" then
  231.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(3165.08838, 1561.84473, -267.500854)
  232.         end
  233.         if island == "Verdies Shipwreck" then
  234.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(4260.97168, 1707.87195, -2020.95801)
  235.         end
  236.         if island == "Fire Wizard" then
  237.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1772.82556, 1592.48083, 1659.70508)
  238.         end
  239.     end
  240.     )
  241. elseif game.PlaceId == 4180357500 then -- Second sea
  242.     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)
  243.         if island == "Permafrost" then
  244.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-140.967987, 436.969696, -5293.22852)
  245.         end
  246.         if island == "Judgement Isle" then
  247.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(6701.64648, 495.924713, -12922.8369)
  248.         end
  249.         if island == "Dawn's Refuge" then
  250.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(3433.41675, 529.727051, -13698.627)
  251.         end
  252.         if island == "Miss Molly" then
  253.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(5695.0874, 480.842682, -13530.4307)
  254.         end
  255.         if island == "Ark Island" then
  256.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(4205.7666, 654.022644, -9980.75586)
  257.         end
  258.         if island == "Pillars" then
  259.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(4088.90698, 518.463196, -7499.25195)
  260.         end
  261.         if island == "Pillar's Top" then
  262.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(4078.38818, 1052.04675, -7531.07666)
  263.         end
  264.         if island == "Wilderness" then
  265.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(2235.30127, 462.208466, -8204.39551)
  266.         end
  267.         if island == "Wilderness" then
  268.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(5952.2085, 442.163818, -4756.70557)
  269.         end
  270.         if island == "Oblitesco" then
  271.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(5952.2085, 442.163818, -4756.70557)
  272.         end
  273.         if island == "Borealis Shipwreck" then
  274.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-6067.9126, 842.834656, -4546.146)
  275.         end
  276.         if island == "Impact Island" then
  277.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-7510.60107, 477.716766, -1407.7511)
  278.         end
  279.         if island == "Trinity Oasis" then
  280.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1665.95691, 480.122314, -904.297668)
  281.         end
  282.         if island == "AG BAse" then
  283.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1938.65063, 708.56488, 1295.30151)
  284.         end
  285.         if island == "Wilderness" then
  286.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(2492.63452, 517.592773, -1449.49878)
  287.         end
  288.         if island == "Theos Arena" then
  289.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(9669.99219, 438.536591, -11469.9922)
  290.         end
  291.         if island == "Altavista" then
  292.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(11258.5039, 597.53479, -6357.74463)
  293.         end
  294.     end
  295.     )
  296. elseif game.PlaceId == 4592306011 then
  297.     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)
  298.         if island == "Redwood Island" then
  299.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(10759.4033, 451.909576, -4418.28955)
  300.         end
  301.         if island == "Sunrise Ravine" then
  302.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-11618.7148, 684.888245, -619.30603)
  303.         end
  304.         if island == "Whiteridge" then
  305.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-9438.38477, 464.508392, -1102.16638)
  306.         end
  307.         if island == "Highland Bandits" then
  308.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-8448.00195, 1065.68311, -1384.85876)
  309.         end
  310.         if island == "AG Base" then
  311.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-6444.17822, 475.612213, -5595.35547)
  312.         end
  313.         if island == "Spires" then
  314.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-14972.9834, 1215.49133, -93.2955475)
  315.         end
  316.         if island == "Sea Torment" then
  317.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-16974.416, 437.537659, 1651.09253)
  318.         end
  319.         if island == "Alalae" then
  320.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-16061.8467, 638.000061, -4501.53027)
  321.         end
  322.         if island == "Angel's Arena" then
  323.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-10539.5996, 574.834045, 4810.3916)
  324.         end
  325.         if island == "Icicle Peak" then
  326.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-13952.0625, 720.932922, 3721.6394)
  327.         end
  328.         if island == "Sabura" then
  329.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-5880.83936, 468.951813, 7588.10693)
  330.         end
  331.         if island == "Cerulea" then
  332.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-9995.33887, 2175.10327, 1529.22607)
  333.         end
  334.         if island == "Stormwall" then
  335.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-645.675659, 607.043884, 11880.8936)
  336.         end
  337.         if island == "Stormwall Top" then
  338.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-637.497253, 1770.61646, 11977.0664)
  339.         end
  340.         if island == "Rupin's Arena" then
  341.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-3387.40869, 585.542236, 2971.32544)
  342.         end
  343.     end
  344.     )
  345. end
  346.  
  347. if game.PlaceId == 3099809263 then
  348.     CC:addDropdown("Create your Character Quickly!", {"Fire", "Water", "Lightning", "Earth", "Light", "Wind", "Shadow", "Poseidon (W.I.P)"}, function(char)
  349.         if char == "Fire" then
  350.             local ohString1 = "Fire"
  351.             local ohString2 = "Male"
  352.             local ohString3 = "http://www.roblox.com/asset/?id=340321621"
  353.             local ohString4 = "Red"
  354.             local ohString5 = "http://www.roblox.com/asset/?id=318843846"
  355.             local ohString6 = "Black"
  356.             local ohString7 = "rbxassetid://1539658327"
  357.             local ohString8 = "Burnt Sienna"
  358.             local ohString9 = "http://www.roblox.com/asset/?id=0"
  359.             local ohTable10 = {
  360.                 [1] = 0.85490202903748,
  361.                 [2] = 0.52156865596771,
  362.                 [3] = 0.2549019753933
  363.             }
  364.             game:GetService("ReplicatedStorage").Remotes.NewGame:FireServer(ohString1, ohString2, ohString3, ohString4, ohString5, ohString6, ohString7, ohString8, ohString9, ohTable10)
  365.  
  366.             wait(2)
  367.  
  368.             game:GetService('TeleportService'):Teleport(3099893649)
  369.         end
  370.         if char == "Water" then
  371.             local ohString1 = "Water"
  372.             local ohString2 = "Male"
  373.             local ohString3 = "http://www.roblox.com/asset/?id=340321621"
  374.             local ohString4 = "Red"
  375.             local ohString5 = "http://www.roblox.com/asset/?id=318843846"
  376.             local ohString6 = "Black"
  377.             local ohString7 = "rbxassetid://1539658327"
  378.             local ohString8 = "Burnt Sienna"
  379.             local ohString9 = "http://www.roblox.com/asset/?id=0"
  380.             local ohTable10 = {
  381.                 [1] = 0.85490202903748,
  382.                 [2] = 0.52156865596771,
  383.                 [3] = 0.2549019753933
  384.             }
  385.             game:GetService("ReplicatedStorage").Remotes.NewGame:FireServer(ohString1, ohString2, ohString3, ohString4, ohString5, ohString6, ohString7, ohString8, ohString9, ohTable10)
  386.  
  387.             wait(2)
  388.  
  389.             game:GetService('TeleportService'):Teleport(3099893649)
  390.         end
  391.         if char == "Shadow" then
  392.             local ohString1 = "Shadow"
  393.             local ohString2 = "Male"
  394.             local ohString3 = "http://www.roblox.com/asset/?id=340321621"
  395.             local ohString4 = "Red"
  396.             local ohString5 = "http://www.roblox.com/asset/?id=318843846"
  397.             local ohString6 = "Black"
  398.             local ohString7 = "rbxassetid://1539658327"
  399.             local ohString8 = "Burnt Sienna"
  400.             local ohString9 = "http://www.roblox.com/asset/?id=0"
  401.             local ohTable10 = {
  402.                 [1] = 0.85490202903748,
  403.                 [2] = 0.52156865596771,
  404.                 [3] = 0.2549019753933
  405.             }
  406.             game:GetService("ReplicatedStorage").Remotes.NewGame:FireServer(ohString1, ohString2, ohString3, ohString4, ohString5, ohString6, ohString7, ohString8, ohString9, ohTable10)
  407.  
  408.             wait(2)
  409.  
  410.             game:GetService('TeleportService'):Teleport(3099893649)
  411.         end
  412.         if char == "Lightning" then
  413.             local ohString1 = "Lightning"
  414.             local ohString2 = "Male"
  415.             local ohString3 = "http://www.roblox.com/asset/?id=340321621"
  416.             local ohString4 = "Red"
  417.             local ohString5 = "http://www.roblox.com/asset/?id=318843846"
  418.             local ohString6 = "Black"
  419.             local ohString7 = "rbxassetid://1539658327"
  420.             local ohString8 = "Burnt Sienna"
  421.             local ohString9 = "http://www.roblox.com/asset/?id=0"
  422.             local ohTable10 = {
  423.                 [1] = 0.85490202903748,
  424.                 [2] = 0.52156865596771,
  425.                 [3] = 0.2549019753933
  426.             }
  427.             game:GetService("ReplicatedStorage").Remotes.NewGame:FireServer(ohString1, ohString2, ohString3, ohString4, ohString5, ohString6, ohString7, ohString8, ohString9, ohTable10)
  428.  
  429.             wait(2)
  430.  
  431.             game:GetService('TeleportService'):Teleport(3099893649)
  432.         end
  433.         if char == "Earth" then
  434.             local ohString1 = "Earth"
  435.             local ohString2 = "Male"
  436.             local ohString3 = "http://www.roblox.com/asset/?id=340321621"
  437.             local ohString4 = "Red"
  438.             local ohString5 = "http://www.roblox.com/asset/?id=318843846"
  439.             local ohString6 = "Black"
  440.             local ohString7 = "rbxassetid://1539658327"
  441.             local ohString8 = "Burnt Sienna"
  442.             local ohString9 = "http://www.roblox.com/asset/?id=0"
  443.             local ohTable10 = {
  444.                 [1] = 0.85490202903748,
  445.                 [2] = 0.52156865596771,
  446.                 [3] = 0.2549019753933
  447.             }
  448.             game:GetService("ReplicatedStorage").Remotes.NewGame:FireServer(ohString1, ohString2, ohString3, ohString4, ohString5, ohString6, ohString7, ohString8, ohString9, ohTable10)
  449.  
  450.             wait(2)
  451.  
  452.             game:GetService('TeleportService'):Teleport(3099893649)
  453.         end
  454.         if char == "Wind" then
  455.             local ohString1 = "Wind"
  456.             local ohString2 = "Male"
  457.             local ohString3 = "http://www.roblox.com/asset/?id=340321621"
  458.             local ohString4 = "Red"
  459.             local ohString5 = "http://www.roblox.com/asset/?id=318843846"
  460.             local ohString6 = "Black"
  461.             local ohString7 = "rbxassetid://1539658327"
  462.             local ohString8 = "Burnt Sienna"
  463.             local ohString9 = "http://www.roblox.com/asset/?id=0"
  464.             local ohTable10 = {
  465.                 [1] = 0.85490202903748,
  466.                 [2] = 0.52156865596771,
  467.                 [3] = 0.2549019753933
  468.             }
  469.             game:GetService("ReplicatedStorage").Remotes.NewGame:FireServer(ohString1, ohString2, ohString3, ohString4, ohString5, ohString6, ohString7, ohString8, ohString9, ohTable10)
  470.  
  471.             wait(2)
  472.  
  473.             game:GetService('TeleportService'):Teleport(3099893649)
  474.         end
  475.         if char == "Light" then
  476.             local ohString1 = "Light"
  477.             local ohString2 = "Male"
  478.             local ohString3 = "http://www.roblox.com/asset/?id=340321621"
  479.             local ohString4 = "Red"
  480.             local ohString5 = "http://www.roblox.com/asset/?id=318843846"
  481.             local ohString6 = "Black"
  482.             local ohString7 = "rbxassetid://1539658327"
  483.             local ohString8 = "Burnt Sienna"
  484.             local ohString9 = "http://www.roblox.com/asset/?id=0"
  485.             local ohTable10 = {
  486.                 [1] = 0.85490202903748,
  487.                 [2] = 0.52156865596771,
  488.                 [3] = 0.2549019753933
  489.             }
  490.             game:GetService("ReplicatedStorage").Remotes.NewGame:FireServer(ohString1, ohString2, ohString3, ohString4, ohString5, ohString6, ohString7, ohString8, ohString9, ohTable10)
  491.  
  492.             wait(2)
  493.  
  494.             game:GetService('TeleportService'):Teleport(3099893649)
  495.         end
  496.         if char == "Poseidon" then
  497.             local ohString1 = "Poseidon"
  498.             local ohString2 = "Male"
  499.             local ohString3 = "http://www.roblox.com/asset/?id=340321621"
  500.             local ohString4 = "Red"
  501.             local ohString5 = "http://www.roblox.com/asset/?id=318843846"
  502.             local ohString6 = "Black"
  503.             local ohString7 = "rbxassetid://1539658327"
  504.             local ohString8 = "Burnt Sienna"
  505.             local ohString9 = "http://www.roblox.com/asset/?id=0"
  506.             local ohTable10 = {
  507.                 [1] = 0.85490202903748,
  508.                 [2] = 0.52156865596771,
  509.                 [3] = 0.2549019753933
  510.             }
  511.             game:GetService("ReplicatedStorage").Remotes.NewGame:FireServer(ohString1, ohString2, ohString3, ohString4, ohString5, ohString6, ohString7, ohString8, ohString9, ohTable10)
  512.  
  513.             wait(2)
  514.  
  515.             game:GetService('TeleportService'):Teleport(3099893649)
  516.         end
  517.     end
  518.     )
  519. end
  520.  
  521. -- settings page
  522. local setting = venyx:addPage("Settings", 5012544693)
  523. local sets = setting:addSection("Settings")
  524. local colors = setting:addSection("Colors")
  525. local themess = setting:addSection("Themes")
  526. local clr = setting:addSection("GUI")
  527.  
  528. sets:addKeybind(
  529.     "Toggle Keybind",
  530.     Enum.KeyCode.RightControl,
  531.     function()
  532.         print("Activated Keybind")
  533.         venyx:toggle()
  534.     end,
  535.     function()
  536.         print("Changed Keybind")
  537.     end
  538. )
  539.  
  540. sets:addTextbox(
  541.     "Notification",
  542.     "Default",
  543.     function(value, focusLost)
  544.         print("Input", value)
  545.  
  546.         if focusLost then
  547.             venyx:Notify("Notification", value)
  548.         end
  549.     end
  550. )
  551.  
  552. for setting, color in pairs(themes) do
  553.     colors:addColorPicker(
  554.         setting,
  555.         color,
  556.         function(color3)
  557.             venyx:setTheme(setting, color3)
  558.         end
  559.     )
  560. end
  561.  
  562. themess:addDropdown("Themes", {"Default", "Light Theme", "Dark Theme", "Red Theme", "Blue Theme", "Brown Theme", "Sky Theme"}, function(theme)
  563.     if theme == "Default" then
  564.         print("Themes coming soon!")
  565.     end
  566.     if theme == "Light Theme" then
  567.         print("Themes coming soon!")
  568.     end
  569.     if theme == "Dark Theme" then
  570.         print("Themes coming soon!")
  571.     end
  572.     if theme == "Red Theme" then
  573.         print("Themes coming soon!")
  574.     end
  575.     if theme == "Blue Theme" then
  576.         print("Themes coming soon!")
  577.     end
  578.     if theme == "Brown Theme" then
  579.         print("Themes coming soon!")
  580.     end
  581.     if theme == "Sky Theme" then
  582.         print("Themes coming soon!")
  583.     end
  584. end
  585. )
  586.  
  587.  
  588. clr:addButton("Destroy GUI", function()
  589.     game.CoreGui:WaitForChild("ArcaneRapist"):Destroy()
  590. end)
  591.  
  592. -- credits page
  593. local creds = venyx:addPage("Credits", 5012544693)
  594. local credits = creds:addSection("Credits")
  595.  
  596. credits:addButton("UI Design by Denosaur on V3rmillion", function()
  597.     setclipboard("https://v3rmillion.net/member.php?action=profile&uid=244024")
  598.     venyx:Notify("Credits", "Copied V3rmillion account link.")
  599. end)
  600.  
  601. credits:addButton("Scripts made by Tyson#3377", function()
  602.     setclipboard("Tyson#3377")
  603.     venyx:Notify("Credits", "Copied Discord username.")
  604. end)
  605.  
  606. -- load
  607. venyx:SelectPage(venyx.pages[1], true)
Add Comment
Please, Sign In to add comment