Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
- local Window = OrionLib:MakeWindow({Name = "Vlorp Script | Murder Mystery 2", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest"})
- --[[
- Name = <string> - The name of the UI.
- HidePremium = <bool> - Whether or not the user details shows Premium status or not.
- SaveConfig = <bool> - Toggles the config saving in the UI.
- ConfigFolder = <string> - The name of the folder where the configs are saved.
- IntroEnabled = <bool> - Whether or not to show the intro animation.
- IntroText = <string> - Text to show in the intro animation.
- IntroIcon = <string> - URL to the image you want to use in the intro animation.
- Icon = <string> - URL to the image you want displayed on the window.
- CloseCallback = <function> - Function to execute when the window is closed.
- ]]
- local Tab = Window:MakeTab({
- Name = "ESP",
- Icon = "rbxassetid://4483345998",
- PremiumOnly = false
- })
- --[[
- Name = <string> - The name of the tab.
- Icon = <string> - The icon of the tab.
- PremiumOnly = <bool> - Makes the tab accessible to Sirus Premium users only.
- ]]
- Tab:AddButton({
- Name = "ESP ROLES",
- Callback = function()
- loadstring(game:HttpGet("https://raw.githubusercontent.com/Ihaveash0rtnamefordiscord/Releases/main/MurderMystery2HighlightESP"))(' Watermelon ?')
- end
- })
- --[[
- Name = <string> - The name of the button.
- Callback = <function> - The function of the button.
- ]]
- Tab:AddParagraph("ACTIVATEDâť—","Script Activated Timer 0:00")
- local Tab = Window:MakeTab({
- Name = "Trade Scam",
- Icon = "rbxassetid://4483345998",
- PremiumOnly = false
- })
- --[[
- Name = <string> - The name of the tab.
- Icon = <string> - The icon of the tab.
- PremiumOnly = <bool> - Makes the tab accessible to Sirus Premium users only.
- ]]
- Tab:AddTextbox({
- Name = "Username",
- Default = "Player",
- TextDisappear = false,
- Callback = function(Value)
- end
- })
- --[[
- Name = <string> - The name of the textbox.
- Default = <string> - The default value of the textbox.
- TextDisappear = <bool> - Makes the text disappear in the textbox after losing focus.
- Callback = <function> - The function of the textbox.
- ]]
- Tab:AddToggle({
- Name = "đź§ŠFreeze Trade",
- Default = false,
- Callback = function(Value)
- OrionLib:MakeNotification({
- Name = "Freeze Trade Enabled!",
- Content = "your items is now safe... remove all your items now!",
- Image = "rbxassetid://4483345998",
- Time = 5
- })
- --[[
- Title = <string> - The title of the notification.
- Content = <string> - The content of the notification.
- Image = <string> - The icon of the notification.
- Time = <number> - The duration of the notfication.
- ]]
- end
- })
- --[[
- Name = <string> - The name of the toggle.
- Default = <bool> - The default value of the toggle.
- Callback = <function> - The function of the toggle.
- ]]
- Tab:AddParagraph("ACTIVATEDâť—","Script Activated Timer 0:00")
- local Tab = Window:MakeTab({
- Name = "AutoFarm",
- Icon = "rbxassetid://4483345998",
- PremiumOnly = false
- })
- --[[
- Name = <string> - The name of the tab.
- Icon = <string> - The icon of the tab.
- PremiumOnly = <bool> - Makes the tab accessible to Sirus Premium users only.
- ]]
- Tab:AddButton({
- Name = "Get AutoFarm Source",
- Callback = function()
- loadstring(game:HttpGet("https://raw.githubusercontent.com/GamerScripter/Game-Hub/main/loader"))()
- end
- })
- --[[
- Name = <string> - The name of the button.
- Callback = <function> - The function of the button.
- ]]
- Tab:AddParagraph("ACTIVATEDâť—","Script Activated Timer 0:00")
- local Tab = Window:MakeTab({
- Name = "Misc",
- Icon = "rbxassetid://4483345998",
- PremiumOnly = false
- })
- --[[
- Name = <string> - The name of the tab.
- Icon = <string> - The icon of the tab.
- PremiumOnly = <bool> - Makes the tab accessible to Sirus Premium users only.
- ]]
- Tab:AddButton({
- Name = "infiniteyield",
- Callback = function()
- loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
- end
- })
- --[[
- Name = <string> - The name of the button.
- Callback = <function> - The function of the button.
- ]]
- local Tab = Window:MakeTab({
- Name = "Credits | Discord",
- Icon = "rbxassetid://4483345998",
- PremiumOnly = false
- })
- --[[
- Name = <string> - The name of the tab.
- Icon = <string> - The icon of the tab.
- PremiumOnly = <bool> - Makes the tab accessible to Sirus Premium users only.
- ]]
- Tab:AddParagraph("CREDITSâť—","Made By Bacon_Script")
- Tab:AddParagraph("ACTIVATEDâť—","Script Activated Timer 0:00")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement