Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --[[ Dropdown:
- section1:addDropdown(
- "Dropdown",
- {"Hello", "World", "Hello World", "Word"},
- function(text)
- print("Selected", text)
- end
- )
- ]]
- --[[ Button:
- sets:addButton(
- "Button",
- function()
- venyx:toggle()
- print("Clicked")
- end
- )
- ]]
- --[[Toggle:
- section1:addToggle(
- "Toggle",
- nil,
- function(value)
- print("Toggled", value)
- end
- )
- ]]
- --[[ Pages and Sections:
- local page = venyx:addPage("Page", 5012544693)
- local section = page:addSection("Section 1")
- ]]
- local library = loadstring(game:HttpGet("https://keycheck1.000webhostapp.com/Venyx.lua"))()
- local venyx = library.new("ArcaneRapist", 5013109572)
- local Coordinates = tostring(game.Players.LocalPlayer.Character.HumanoidRootPart.Position)
- venyx:Notify("Keybind", "Press Right CTRL on your keyboard to hide/show GUI. This is still a W.I.P project.")
- local themes = {
- Background = Color3.fromRGB(24, 24, 24),
- Glow = Color3.fromRGB(0, 0, 0),
- Accent = Color3.fromRGB(10, 10, 10),
- LightContrast = Color3.fromRGB(20, 20, 20),
- DarkContrast = Color3.fromRGB(14, 14, 14),
- TextColor = Color3.fromRGB(255, 255, 255)
- }
- -- features page
- local features = venyx:addPage("Features", 5012544693)
- local LP = features:addSection("Local Player")
- local DD = features:addSection("Teleports")
- local CC = features:addSection("Character Creator")
- LP:addToggle(
- "Walk on Water",
- nil,
- function(value)
- local UIS = game:GetService("UserInputService")
- local Enabled = value
- workspace.Env.Ocean.CanCollide = value
- workspace.Env.Ocean.Size = Vector3.new(2000, 1, 2000)
- workspace.Env.Ocean.Mesh.Scale = Vector3.new(1, 1, 1)
- game:GetService("RunService").RenderStepped:Connect(function()
- if Enabled then
- workspace.Env.Ocean.Position = Vector3.new(game.Players.LocalPlayer.Character.HumanoidRootPart.Position.X, 430, game.Players.LocalPlayer.Character.HumanoidRootPart.Position.Z)
- end
- end)
- UIS.InputBegan:Connect(function(input, onGui)
- if onGui then return end
- if input.KeyCode == Enum.KeyCode.M then
- workspace.Env.Ocean.CanCollide = not workspace.Env.Ocean.CanCollide
- elseif input.KeyCode == Enum.KeyCode.L then
- Enabled = not Enabled
- if not Enabled then
- workspace.Env.Ocean.Size = Vector3.new(1, 1, 1)
- workspace.Env.Ocean.Mesh.Scale = Vector3.new(60000, 1, 60000)
- else
- workspace.Env.Ocean.Size = Vector3.new(2000, 1, 2000)
- workspace.Env.Ocean.Mesh.Scale = Vector3.new(1, 1, 1)
- end
- end
- end)
- end
- )
- LP:addSlider(
- "Walk Speed (buggy)",
- 0,
- 16,
- 250,
- function(value)
- while wait(0.000000001) do
- pcall(function()
- game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = value
- end)
- end
- end
- )
- LP:addSlider(
- "Jump Power (buggy)",
- 0,
- 50,
- 500,
- function(value)
- while wait(0.000000001) do
- pcall(function()
- game.Players.LocalPlayer.Character.Humanoid.JumpPower = value
- end)
- end
- end
- )
- DD:addDropdown("Teleport Seas", {"First Sea", "Second Sea", "Third Sea", "Northwester Sea"}, function(sea)
- if sea == "First Sea" then
- game:GetService("TeleportService"):Teleport(3099893649, game.Players.LocalPlayer)
- end
- if sea == "Second Sea" then
- game:GetService("TeleportService"):Teleport(4180357500, game.Players.LocalPlayer)
- end
- if sea == "Third Sea" then
- game:GetService("TeleportService"):Teleport(4592306011, game.Players.LocalPlayer)
- end
- if sea == "Northwestern Sea" then
- game:GetService("TeleportService"):Teleport(4571591616, game.Players.LocalPlayer)
- end
- end
- )
- LP:addButton("Always Day", function()
- for i,v in pairs(game.Lighting:GetChildren()) do
- if v:IsA("ColorCorrectionEffect") or v:IsA("Sky") or v:IsA("BlurEffect") or v:IsA("BloomEffect") or v:IsA("SunRaysEffect") then
- v:Destroy()
- end
- end
- game.Lighting.Ambient = Color3.fromRGB(255, 255, 255)
- game.Lighting.Brightness = 1
- game.Lighting.ClockTime = 14
- game.Lighting.ColorShift_Bottom = Color3.fromRGB(255, 255, 255)
- game.Lighting.ColorShift_Top = Color3.fromRGB(255, 255, 255)
- game.Lighting.ExposureCompensation = 0
- game.Lighting.FogColor = Color3.fromRGB(255, 255, 255)
- game.Lighting.FogEnd = 999999999
- game.Lighting.GeographicLatitude = 41.733
- game.Lighting.OutdoorAmbient = Color3.fromRGB(255, 255, 255)
- game.Lighting.GlobalShadows = true
- game.Lighting.Changed:Connect(function()
- game.Lighting.Ambient = Color3.fromRGB(255, 255, 255)
- game.Lighting.Brightness = 1
- game.Lighting.ClockTime = 14
- game.Lighting.ColorShift_Bottom = Color3.fromRGB(255, 255, 255)
- game.Lighting.ColorShift_Top = Color3.fromRGB(255, 255, 255)
- game.Lighting.ExposureCompensation = 0
- game.Lighting.FogColor = Color3.fromRGB(255, 255, 255)
- game.Lighting.FogEnd = 999999999
- game.Lighting.GeographicLatitude = 41.733
- game.Lighting.OutdoorAmbient = Color3.fromRGB(255, 255, 255)
- game.Lighting.GlobalShadows = true
- end)
- game.Lighting.DescendantAdded:Connect(function(obj)
- if obj:IsA("ColorCorrectionEffect") or obj:IsA("Sky") or obj:IsA("BlurEffect") or obj:IsA("BloomEffect") or obj:IsA("SunRaysEffect") then
- obj:Destroy()
- end
- end)
- end)
- if game.PlaceId == 3099893649 then -- First sea
- 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)
- if island == "Newground's Island" then
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-2138.74707, 452.847748, 28.2152691)
- end
- if island == "Ice Crown Island" then
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-338.938477, 661.03125, -1607.09314)
- end
- if island == "Graveyard" then
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1770.36157, 438.961731, -1438.86401)
- end
- if island == "Sea Cannon" then
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(3115.09497, 437.206879, -569.38208)
- end
- if island == "Kairo" then
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1210.36865, 517.961426, 1206.9718)
- end
- if island == "Savaria" then
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(937.942017, 476.57663, 1683.00964)
- end
- if island == "Boxing Island" then
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-256.222931, 539.25061, 3586.42578)
- end
- if island == "Freedrock Wilderness" then
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-2620.13306, 583.992249, 4297.14063)
- end
- if island == "Doom Island" then
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-2337.85522, 610.232483, 1509.1272)
- end
- if island == "Magic Fist Island" then
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-2988.69995, 437.970032, -1628.73071)
- end
- if island == "Orange Island" then
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-3649.37036, 448.11969, -5493.94043)
- end
- if island == "Wilderness" then
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(982.860535, 492.428131, -7197.02393)
- end
- if island == "Canopy Island" then
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(6270.00293, 465.212982, -1631.76086)
- end
- if island == "Eve Island" then
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(2938.56348, 464.841034, 4919.89648)
- end
- if island == "Mavist Island" then
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-746.167969, 672.045837, 6536.56445)
- end
- if island == "Lava Tower Isle" then
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-5482.46924, 436.877777, 776.477356)
- end
- if island == "Sky Ring" then
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(5525.14014, 1807.80896, -1285.30347)
- end
- if island == "Cumulus Island" then
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(3165.08838, 1561.84473, -267.500854)
- end
- if island == "Verdies Shipwreck" then
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(4260.97168, 1707.87195, -2020.95801)
- end
- if island == "Fire Wizard" then
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1772.82556, 1592.48083, 1659.70508)
- end
- end
- )
- elseif game.PlaceId == 4180357500 then -- Second sea
- 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)
- if island == "Permafrost" then
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-140.967987, 436.969696, -5293.22852)
- end
- if island == "Judgement Isle" then
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(6701.64648, 495.924713, -12922.8369)
- end
- if island == "Dawn's Refuge" then
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(3433.41675, 529.727051, -13698.627)
- end
- if island == "Miss Molly" then
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(5695.0874, 480.842682, -13530.4307)
- end
- if island == "Ark Island" then
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(4205.7666, 654.022644, -9980.75586)
- end
- if island == "Pillars" then
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(4088.90698, 518.463196, -7499.25195)
- end
- if island == "Pillar's Top" then
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(4078.38818, 1052.04675, -7531.07666)
- end
- if island == "Wilderness" then
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(2235.30127, 462.208466, -8204.39551)
- end
- if island == "Wilderness" then
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(5952.2085, 442.163818, -4756.70557)
- end
- if island == "Oblitesco" then
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(5952.2085, 442.163818, -4756.70557)
- end
- if island == "Borealis Shipwreck" then
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-6067.9126, 842.834656, -4546.146)
- end
- if island == "Impact Island" then
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-7510.60107, 477.716766, -1407.7511)
- end
- if island == "Trinity Oasis" then
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1665.95691, 480.122314, -904.297668)
- end
- if island == "AG BAse" then
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1938.65063, 708.56488, 1295.30151)
- end
- if island == "Wilderness" then
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(2492.63452, 517.592773, -1449.49878)
- end
- if island == "Theos Arena" then
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(9669.99219, 438.536591, -11469.9922)
- end
- if island == "Altavista" then
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(11258.5039, 597.53479, -6357.74463)
- end
- end
- )
- elseif game.PlaceId == 4592306011 then
- 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)
- if island == "Redwood Island" then
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(10759.4033, 451.909576, -4418.28955)
- end
- if island == "Sunrise Ravine" then
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-11618.7148, 684.888245, -619.30603)
- end
- if island == "Whiteridge" then
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-9438.38477, 464.508392, -1102.16638)
- end
- if island == "Highland Bandits" then
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-8448.00195, 1065.68311, -1384.85876)
- end
- if island == "AG Base" then
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-6444.17822, 475.612213, -5595.35547)
- end
- if island == "Spires" then
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-14972.9834, 1215.49133, -93.2955475)
- end
- if island == "Sea Torment" then
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-16974.416, 437.537659, 1651.09253)
- end
- if island == "Alalae" then
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-16061.8467, 638.000061, -4501.53027)
- end
- if island == "Angel's Arena" then
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-10539.5996, 574.834045, 4810.3916)
- end
- if island == "Icicle Peak" then
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-13952.0625, 720.932922, 3721.6394)
- end
- if island == "Sabura" then
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-5880.83936, 468.951813, 7588.10693)
- end
- if island == "Cerulea" then
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-9995.33887, 2175.10327, 1529.22607)
- end
- if island == "Stormwall" then
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-645.675659, 607.043884, 11880.8936)
- end
- if island == "Stormwall Top" then
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-637.497253, 1770.61646, 11977.0664)
- end
- if island == "Rupin's Arena" then
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-3387.40869, 585.542236, 2971.32544)
- end
- end
- )
- end
- if game.PlaceId == 3099809263 then
- CC:addDropdown("Create your Character Quickly!", {"Fire", "Water", "Lightning", "Earth", "Light", "Wind", "Shadow", "Poseidon (W.I.P)"}, function(char)
- if char == "Fire" then
- local ohString1 = "Fire"
- local ohString2 = "Male"
- local ohString3 = "http://www.roblox.com/asset/?id=340321621"
- local ohString4 = "Red"
- local ohString5 = "http://www.roblox.com/asset/?id=318843846"
- local ohString6 = "Black"
- local ohString7 = "rbxassetid://1539658327"
- local ohString8 = "Burnt Sienna"
- local ohString9 = "http://www.roblox.com/asset/?id=0"
- local ohTable10 = {
- [1] = 0.85490202903748,
- [2] = 0.52156865596771,
- [3] = 0.2549019753933
- }
- game:GetService("ReplicatedStorage").Remotes.NewGame:FireServer(ohString1, ohString2, ohString3, ohString4, ohString5, ohString6, ohString7, ohString8, ohString9, ohTable10)
- wait(2)
- game:GetService('TeleportService'):Teleport(3099893649)
- end
- if char == "Water" then
- local ohString1 = "Water"
- local ohString2 = "Male"
- local ohString3 = "http://www.roblox.com/asset/?id=340321621"
- local ohString4 = "Red"
- local ohString5 = "http://www.roblox.com/asset/?id=318843846"
- local ohString6 = "Black"
- local ohString7 = "rbxassetid://1539658327"
- local ohString8 = "Burnt Sienna"
- local ohString9 = "http://www.roblox.com/asset/?id=0"
- local ohTable10 = {
- [1] = 0.85490202903748,
- [2] = 0.52156865596771,
- [3] = 0.2549019753933
- }
- game:GetService("ReplicatedStorage").Remotes.NewGame:FireServer(ohString1, ohString2, ohString3, ohString4, ohString5, ohString6, ohString7, ohString8, ohString9, ohTable10)
- wait(2)
- game:GetService('TeleportService'):Teleport(3099893649)
- end
- if char == "Shadow" then
- local ohString1 = "Shadow"
- local ohString2 = "Male"
- local ohString3 = "http://www.roblox.com/asset/?id=340321621"
- local ohString4 = "Red"
- local ohString5 = "http://www.roblox.com/asset/?id=318843846"
- local ohString6 = "Black"
- local ohString7 = "rbxassetid://1539658327"
- local ohString8 = "Burnt Sienna"
- local ohString9 = "http://www.roblox.com/asset/?id=0"
- local ohTable10 = {
- [1] = 0.85490202903748,
- [2] = 0.52156865596771,
- [3] = 0.2549019753933
- }
- game:GetService("ReplicatedStorage").Remotes.NewGame:FireServer(ohString1, ohString2, ohString3, ohString4, ohString5, ohString6, ohString7, ohString8, ohString9, ohTable10)
- wait(2)
- game:GetService('TeleportService'):Teleport(3099893649)
- end
- if char == "Lightning" then
- local ohString1 = "Lightning"
- local ohString2 = "Male"
- local ohString3 = "http://www.roblox.com/asset/?id=340321621"
- local ohString4 = "Red"
- local ohString5 = "http://www.roblox.com/asset/?id=318843846"
- local ohString6 = "Black"
- local ohString7 = "rbxassetid://1539658327"
- local ohString8 = "Burnt Sienna"
- local ohString9 = "http://www.roblox.com/asset/?id=0"
- local ohTable10 = {
- [1] = 0.85490202903748,
- [2] = 0.52156865596771,
- [3] = 0.2549019753933
- }
- game:GetService("ReplicatedStorage").Remotes.NewGame:FireServer(ohString1, ohString2, ohString3, ohString4, ohString5, ohString6, ohString7, ohString8, ohString9, ohTable10)
- wait(2)
- game:GetService('TeleportService'):Teleport(3099893649)
- end
- if char == "Earth" then
- local ohString1 = "Earth"
- local ohString2 = "Male"
- local ohString3 = "http://www.roblox.com/asset/?id=340321621"
- local ohString4 = "Red"
- local ohString5 = "http://www.roblox.com/asset/?id=318843846"
- local ohString6 = "Black"
- local ohString7 = "rbxassetid://1539658327"
- local ohString8 = "Burnt Sienna"
- local ohString9 = "http://www.roblox.com/asset/?id=0"
- local ohTable10 = {
- [1] = 0.85490202903748,
- [2] = 0.52156865596771,
- [3] = 0.2549019753933
- }
- game:GetService("ReplicatedStorage").Remotes.NewGame:FireServer(ohString1, ohString2, ohString3, ohString4, ohString5, ohString6, ohString7, ohString8, ohString9, ohTable10)
- wait(2)
- game:GetService('TeleportService'):Teleport(3099893649)
- end
- if char == "Wind" then
- local ohString1 = "Wind"
- local ohString2 = "Male"
- local ohString3 = "http://www.roblox.com/asset/?id=340321621"
- local ohString4 = "Red"
- local ohString5 = "http://www.roblox.com/asset/?id=318843846"
- local ohString6 = "Black"
- local ohString7 = "rbxassetid://1539658327"
- local ohString8 = "Burnt Sienna"
- local ohString9 = "http://www.roblox.com/asset/?id=0"
- local ohTable10 = {
- [1] = 0.85490202903748,
- [2] = 0.52156865596771,
- [3] = 0.2549019753933
- }
- game:GetService("ReplicatedStorage").Remotes.NewGame:FireServer(ohString1, ohString2, ohString3, ohString4, ohString5, ohString6, ohString7, ohString8, ohString9, ohTable10)
- wait(2)
- game:GetService('TeleportService'):Teleport(3099893649)
- end
- if char == "Light" then
- local ohString1 = "Light"
- local ohString2 = "Male"
- local ohString3 = "http://www.roblox.com/asset/?id=340321621"
- local ohString4 = "Red"
- local ohString5 = "http://www.roblox.com/asset/?id=318843846"
- local ohString6 = "Black"
- local ohString7 = "rbxassetid://1539658327"
- local ohString8 = "Burnt Sienna"
- local ohString9 = "http://www.roblox.com/asset/?id=0"
- local ohTable10 = {
- [1] = 0.85490202903748,
- [2] = 0.52156865596771,
- [3] = 0.2549019753933
- }
- game:GetService("ReplicatedStorage").Remotes.NewGame:FireServer(ohString1, ohString2, ohString3, ohString4, ohString5, ohString6, ohString7, ohString8, ohString9, ohTable10)
- wait(2)
- game:GetService('TeleportService'):Teleport(3099893649)
- end
- if char == "Poseidon" then
- local ohString1 = "Poseidon"
- local ohString2 = "Male"
- local ohString3 = "http://www.roblox.com/asset/?id=340321621"
- local ohString4 = "Red"
- local ohString5 = "http://www.roblox.com/asset/?id=318843846"
- local ohString6 = "Black"
- local ohString7 = "rbxassetid://1539658327"
- local ohString8 = "Burnt Sienna"
- local ohString9 = "http://www.roblox.com/asset/?id=0"
- local ohTable10 = {
- [1] = 0.85490202903748,
- [2] = 0.52156865596771,
- [3] = 0.2549019753933
- }
- game:GetService("ReplicatedStorage").Remotes.NewGame:FireServer(ohString1, ohString2, ohString3, ohString4, ohString5, ohString6, ohString7, ohString8, ohString9, ohTable10)
- wait(2)
- game:GetService('TeleportService'):Teleport(3099893649)
- end
- end
- )
- end
- -- settings page
- local setting = venyx:addPage("Settings", 5012544693)
- local sets = setting:addSection("Settings")
- local colors = setting:addSection("Colors")
- local themess = setting:addSection("Themes")
- local clr = setting:addSection("GUI")
- sets:addKeybind(
- "Toggle Keybind",
- Enum.KeyCode.RightControl,
- function()
- print("Activated Keybind")
- venyx:toggle()
- end,
- function()
- print("Changed Keybind")
- end
- )
- sets:addTextbox(
- "Notification",
- "Default",
- function(value, focusLost)
- print("Input", value)
- if focusLost then
- venyx:Notify("Notification", value)
- end
- end
- )
- for setting, color in pairs(themes) do
- colors:addColorPicker(
- setting,
- color,
- function(color3)
- venyx:setTheme(setting, color3)
- end
- )
- end
- themess:addDropdown("Themes", {"Default", "Light Theme", "Dark Theme", "Red Theme", "Blue Theme", "Brown Theme", "Sky Theme"}, function(theme)
- if theme == "Default" then
- print("Themes coming soon!")
- end
- if theme == "Light Theme" then
- print("Themes coming soon!")
- end
- if theme == "Dark Theme" then
- print("Themes coming soon!")
- end
- if theme == "Red Theme" then
- print("Themes coming soon!")
- end
- if theme == "Blue Theme" then
- print("Themes coming soon!")
- end
- if theme == "Brown Theme" then
- print("Themes coming soon!")
- end
- if theme == "Sky Theme" then
- print("Themes coming soon!")
- end
- end
- )
- clr:addButton("Destroy GUI", function()
- game.CoreGui:WaitForChild("ArcaneRapist"):Destroy()
- end)
- -- credits page
- local creds = venyx:addPage("Credits", 5012544693)
- local credits = creds:addSection("Credits")
- credits:addButton("UI Design by Denosaur on V3rmillion", function()
- setclipboard("https://v3rmillion.net/member.php?action=profile&uid=244024")
- venyx:Notify("Credits", "Copied V3rmillion account link.")
- end)
- credits:addButton("Scripts made by Tyson#3377", function()
- setclipboard("Tyson#3377")
- venyx:Notify("Credits", "Copied Discord username.")
- end)
- -- load
- venyx:SelectPage(venyx.pages[1], true)
Add Comment
Please, Sign In to add comment