Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local plr = game:GetSevice("Players").LocalPlayer
- local library = loadstring(game:HttpGet("https://raw.githubusercontent.com/zxciaz/VenyxUI/main/Reuploaded"))()
- local venyx = library.new("Moon Chicory! | Welcome ".. plr.Name .."!", 5013109572)
- local themes = {
- Background = Color3.fromRGB(86, 144, 255),
- 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(0,0,128)
- }
- local page = venyx:addPage("Farming", 5012544693)
- local section1 = page:addSection("Farming!")
- section1:addToggle("Equip DW", nil, function(state)
- print("Toggled", state)
- if state then
- print("Toggle On")
- _G.Equip = true
- while _G.Equip do
- wait()
- for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
- if v.Name == "Double Weight" then
- v.Parent = game.Players.LocalPlayer.Character
- end
- end
- end
- else
- print("Toggle Off")
- _G.Equip = false
- end
- end)
- section1:addToggle("Farm DW", nil, function(state)
- print("Toggled", state)
- if state then
- print("Toggle On")
- _G.Farm = true
- while _G.Farm do
- wait(0.5)
- for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
- if v.Name == "Double Weight" then v:Activate() end
- end
- end
- else
- print("Toggle Off")
- _G.Farm = false
- end
- end)
- local section1 = page:addSection("Extra!")
- section1:addToggle("Lock Player", nil, function(state)
- print("Toggled", state)
- print(state)
- if state then
- for i, v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
- if v:IsA('Part') then v.Anchored = true
- end
- end
- else
- for i, v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
- if v:IsA('Part') then v.Anchored = false
- end
- end
- end
- end)
- section1:addButton("Toggle Day/Night", function()
- print("Clicked")
- if game:GetService("Lighting").ClockTime == 19 then
- game:GetService("Lighting").ClockTime = 14
- elseif game:GetService("Lighting").ClockTime == 14 then
- game:GetService("Lighting").ClockTime = 19
- end
- end)
- section1:addButton("Weight Counter", function()
- print("Clicked")
- loadstring(game:HttpGet("https://pastebin.com/raw/AfrXkv3g"))()
- end)
- section1:addButton("Del Hud", function()
- print("Clicked")
- game:GetService("Players").LocalPlayer.PlayerGui.HUD:Destroy()
- end)
- section1:addButton("Del Rumble", function()
- print("Clicked")
- game.ReplicatedFirst.TourneyQ:Destroy()
- end)
- section1:addButton("Lower Ping + High Fps", function()
- loadstring(game:HttpGet("https://pastebin.com/raw/fyg6uPGC"))()
- end)
- section1:addButton("Anti Afk", function()
- print("Clicked")
- local vu = game:GetService("VirtualUser")
- game:GetService("Players").LocalPlayer.Idled:connect(function()
- vu:Button2Down(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
- wait(1)
- vu:Button2Up(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
- end)
- end)
- local page = venyx:addPage("Dropping", 5012544693)
- local section2 = page:addSection("Dropping!")
- section2:addButton("Drop Script(Credits - @01newj)", function()
- print("Clicked")
- loadstring(game:HttpGet("https://pastebin.com/raw/dTSv2gXK"))()
- end)
- local page = venyx:addPage("Misc", 5012544693)
- local section3 = page:addSection("Misc!")
- section3:addButton("Small", function()
- print("Clicked")
- for i,v in pairs(game.Players.LocalPlayer.Character.Humanoid:GetChildren()) do
- if v:IsA("NumberValue") then
- v:Destroy()
- end
- end
- end)
- section3:addButton("Anti Hit (Credits @KIXEmperorKaidoIX)", function()
- print("Clicked")
- loadstring(game:HttpGet("https://raw.githubusercontent.com/MidnightScriptz/KaidoAntiH/main/loader", true))()
- end)
- section3:addButton("Strength Spy (Credits @KIXEmperorKaidoIX)", function()
- print("Clicked")
- loadstring(game:HttpGet("https://raw.githubusercontent.com/MidnightScriptz/KaidoSpy/main/loader", true))()
- end)
- section3:addButton("Loop (Credits @KIXEmperorKaidoIX)", function()
- print("Clicked")
- loadstring(game:HttpGet("https://raw.githubusercontent.com/MidnightScriptz/KingKaidoLoop/main/loader", true))()
- end)
- section3:addButton("Rainbow Gloves", function()
- loadstring(game:HttpGet("https://pastebin.com/raw/fYUdJZHZ"))()
- end)
- section3:addButton("FastPunch", function()
- loadstring(game:HttpGet("https://pastebin.com/raw/Q3NLgMAh"))()
- end)
- section3:addButton("Crazy Script (Credits - @01newj)", function()
- loadstring(game:HttpGet("https://pastebin.com/raw/VzcHMi30"))()
- end)
- local theme = venyx:addPage("Settings", 5012544693)
- local colors = theme:addSection("Toggle Key!")
- colors:addKeybind("Toggle Keybind", Enum.KeyCode.F, function()
- print("Activated Keybind")
- venyx:toggle()
- end, function()
- print("Changed Keybind")
- end)
- local page = venyx:addPage("Credits", 5012544693)
- local section4 = page:addSection("Credits!")
- section4:addButton("Made By - Auberon_Altas#5542 ", function()
- print("CREDITS - Auberon_Altas#5542")
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement