Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()
- local Window = Rayfield:CreateWindow({
- Name = "XEN Mic Up",
- LoadingTitle = "MicUP | Xen",
- LoadingSubtitle = "by XEN",
- ConfigurationSaving = {
- Enabled = false,
- FolderName = nil, -- Create a custom folder for your hub/game
- FileName = "Mic Up Xen"
- },
- Discord = {
- Enabled = false,
- Invite = "noinvitelink", -- The Discord invite code, do not include discord.gg/. E.g. discord.gg/ABCD would be ABCD
- RememberJoins = true -- Set this to false to make them join the discord every time they load it up
- },
- KeySystem = true, -- Set this to true to use our key system
- KeySettings = {
- Title = "Mic Up | Key",
- Subtitle = "GATEKEEP",
- Note = "get key from xen",
- FileName = "Mic Up Key", -- It is recommended to use something unique as other scripts using Rayfield may overwrite your key file
- SaveKey = false, -- The user's key will be saved, but if you change the key, they will be unable to use your script
- GrabKeyFromSite = false, -- If this is true, set Key below to the RAW site you would like Rayfield to get the key from
- Key = {"xenontop"} -- List of keys that will be accepted by the system, can be RAW file links (pastebin, github etc) or simple strings ("hello","key22")
- }
- })
- local MainTab = Window:CreateTab("Main", nil) -- Title, Image
- local MainSection = MainTab:CreateSection("Main")
- Rayfield:Notify({
- Title = "EXECUTED!!",
- Content = "SUCCESS",
- Duration = 5,
- Image = nil,
- Actions = { -- Notification Buttons
- Ignore = {
- Name = "Okay!",
- Callback = function()
- print("The user tapped Okay!")
- end
- },
- },
- })
- local Button = MainTab:CreateButton({
- Name = "Emotes",
- Callback = function()
- loadstring(game:HttpGet("https://pastebin.com/raw/eCpipCTH"))()
- end,
- })
- local Button = MainTab:CreateButton({
- Name = "SystemBroken",
- Callback = function()
- loadstring(game:HttpGet('https://raw.githubusercontent.com/H20CalibreYT/SystemBroken/main/script'))()
- end,
- })
- local Button = MainTab:CreateButton({
- Name = "Infinite Yeild",
- Callback = function()
- loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
- end,
- })
- local Button = MainTab:CreateButton({
- Name = "CTRL TP",
- Callback = function()
- -- CTRL+CLICK TP
- local Plr = game:GetService("Players").LocalPlayer
- local Mouse = Plr:GetMouse()
- Mouse.Button1Down:connect(function()
- if not game:GetService("UserInputService"):IsKeyDown(Enum.KeyCode.LeftControl) then return end
- if not Mouse.Target then return end
- Plr.Character:MoveTo(Mouse.Hit.p)
- end)
- end,
- })
- local Button = MainTab:CreateButton({
- Name = "Baseplate",
- Callback = function()
- local Workspace = game:GetService("Workspace");
- local Players = game:GetService("Players");
- local Player = Players.LocalPlayer
- local Terrain = Workspace.Terrain
- Terrain:FillBlock(CFrame.new(66, -10, 72.5), Vector3.new(10000, 16, 10000), Enum.Material.Asphalt)
- end,
- })
Advertisement
Comments
-
- whats the code
-
- nvm i got the code
-
- whats the code?
-
- whats the key
-
- KEY IS xenontop
Add Comment
Please, Sign In to add comment
Advertisement