Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- ORION
- local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
- local Player = game.Players.LocalPlayer
- OrionLib:MakeNotification({
- Name = "Script loaded",
- Content = "Welcome "..Player.Name.." ",
- Image = "rbxassetid://4483345998",
- Time = 5
- })
- -- KAVO
- local Sound = Instance.new("Sound",game:GetService("SoundService"))
- Sound.SoundId = "rbxassetid://232127604"
- Sound:Play()
- local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
- local Window = Library.CreateLib("Galaxy Scripts | Free", "GrapeTheme")
- -- MAIN
- local Main = Window:NewTab("Socials")
- local MainSection = Main:NewSection("Bacon Hacks")
- MainSection:NewButton("YouTube Channel- Click to copy link", "Search http://surl.li/cpdxe if clicking doesn't work", function()
- setclipboard('https://www.youtube.com/channel/UCt1UF4Glun5X_D-qXaJcQtg')
- end)
- MainSection:NewButton("Discord Server- Click to copy link", "Type discord.gg/44ANWfjDHD is clicking doesn't work", function()
- setclipboard('discord.gg/44ANWfjDHD')
- end)
- -- FEATURES
- local Main = Window:NewTab("Features")
- local MainSection = Main:NewSection("Have fun :D")
- MainSection:NewToggle("Super Speed", "Become Sonic", function(state)
- if state then
- local Sound = Instance.new("Sound",game:GetService("SoundService"))
- Sound.SoundId = "rbxassetid://177266782"
- Sound:Play()
- game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 100
- else
- local Sound = Instance.new("Sound",game:GetService("SoundService"))
- Sound.SoundId = "rbxassetid://177266782"
- Sound:Play()
- game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
- end
- end)
- MainSection:NewButton("Anti-Afk", "Won't get kicked for being afk", function()
- for i,v in pairs(getconnections(game:GetService("Players").LocalPlayer.Idled)) do
- v:Disable()
- end
- end)
- MainSection:NewButton("Infinite Jump- Hold jump button", "Stays activated forever by the way", function()
- game:GetService("UserInputService").JumpRequest:connect(function()
- game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping")
- end)
- end)
- MainSection:NewButton("Click to teleport", "Hold the tool and click where you want to go", function()
- mouse = game.Players.LocalPlayer:GetMouse()
- tool = Instance.new("Tool")
- tool.RequiresHandle = false
- tool.Name = "Click Teleport"
- tool.Activated:connect(function()
- local pos = mouse.Hit+Vector3.new(0,2.5,0)
- pos = CFrame.new(pos.X,pos.Y,pos.Z)
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = pos
- end)
- tool.Parent = game.Players.LocalPlayer.Backpack
- end)
- MainSection:NewButton("Walk on walls- Reset to turn off", "Spider-man lol", function()
- loadstring(game:HttpGet("https://pastebin.com/raw/zXk4Rq2r"))()
- end)
- MainSection:NewButton("Fling[R6]- Press 'E' where your mouse is", "Only works in R6", function()
- loadstring(game:HttpGet("https://pastebin.com/raw/BsiK0Pi1"))()
- end)
- -- PLAYER
- local Custom = Window:NewTab("Player")
- local CustomSection = Custom:NewSection("Custom Speed and Jump, etc")
- CustomSection:NewSlider("Walk Speed", "Change the speed you walk at", 500, 16, function(s) -- 500 (MaxValue) | 0 (MinValue)
- game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s
- end)
- CustomSection:NewSlider("Jump Power- Broken", "Gonna try to fix this soon", 500, 16, function(s) -- 500 (MaxValue) | 0 (MinValue)
- game.Players.LocalPlayer.Character.Humanoid.JumpPower = s
- end)
- CustomSection:NewButton("Reset Player", "Pretty self explanitory :/", function()
- game.Players.LocalPlayer.Character.Humanoid.Health = 0
- end)
- CustomSection:NewButton("Fly [R15]- Press 'X' to toggle", "Pretty cool huh? :D", function()
- loadstring(game:HttpGet("https://raw.githubusercontent.com/Nicuse/RobloxScripts/main/BypassedFly.lua"))()
- Fly(true)
- end)
- CustomSection:NewButton("No Clip- Press 'N' to toggle [Only click once]", "Hopefully this stays unpatched", function()
- loadstring(game:HttpGet("https://pastebin.com/raw/BJVUVNw5"))()
- end)
- -- MUSIC
- local Sounds = Window:NewTab("Music :D")
- local SoundsSection = Sounds:NewSection("Play music by clicking the buttons- Turn up volume")
- SoundsSection:NewButton("Sugar Crash", "Enjoy listening", function()
- local Sound = Instance.new("Sound",game:GetService("SoundService"))
- Sound.SoundId = "rbxassetid://6875625578"
- Sound:Play()
- end)
- SoundsSection:NewButton("Rick Roll", "Enjoy listening", function()
- local Sound = Instance.new("Sound",game:GetService("SoundService"))
- Sound.SoundId = "rbxassetid://7363412529"
- Sound:Play()
- end)
- SoundsSection:NewButton("Had Me At Hello", "Enjoy listening", function()
- local Sound = Instance.new("Sound",game:GetService("SoundService"))
- Sound.SoundId = "rbxassetid://9043871744"
- Sound:Play()
- end)
- SoundsSection:NewButton("JoJo", "Enjoy listening", function()
- local Sound = Instance.new("Sound",game:GetService("SoundService"))
- Sound.SoundId = "rbxassetid://9114156521"
- Sound:Play()
- end)
- -- Settings
- local Settings = Window:NewTab("Settings")
- local SettingsSection = Settings:NewSection("Pick your settings")
- SettingsSection:NewKeybind("Toggle GUI", "Pick the button to open/close gui", Enum.KeyCode.RightControl, function()
- Library:ToggleUI()
- local Sound = Instance.new("Sound",game:GetService("SoundService"))
- Sound.SoundId = "rbxassetid://177266782"
- Sound:Play()
- end)
- SettingsSection:NewButton("Disconnect from server", "Kicks you from the game", function()
- game:GetService("Players").LocalPlayer:Kick("|")
- end)
Advertisement
Advertisement