Advertisement
360Xen

XEN MIC UP

Oct 20th, 2024 (edited)
3,234
1
Never
5
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.11 KB | None | 1 0
  1. local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()
  2.  
  3. local Window = Rayfield:CreateWindow({
  4. Name = "XEN Mic Up",
  5. LoadingTitle = "MicUP | Xen",
  6. LoadingSubtitle = "by XEN",
  7. ConfigurationSaving = {
  8. Enabled = false,
  9. FolderName = nil, -- Create a custom folder for your hub/game
  10. FileName = "Mic Up Xen"
  11. },
  12. Discord = {
  13. Enabled = false,
  14. Invite = "noinvitelink", -- The Discord invite code, do not include discord.gg/. E.g. discord.gg/ABCD would be ABCD
  15. RememberJoins = true -- Set this to false to make them join the discord every time they load it up
  16. },
  17. KeySystem = true, -- Set this to true to use our key system
  18. KeySettings = {
  19. Title = "Mic Up | Key",
  20. Subtitle = "GATEKEEP",
  21. Note = "get key from xen",
  22. FileName = "Mic Up Key", -- It is recommended to use something unique as other scripts using Rayfield may overwrite your key file
  23. SaveKey = false, -- The user's key will be saved, but if you change the key, they will be unable to use your script
  24. GrabKeyFromSite = false, -- If this is true, set Key below to the RAW site you would like Rayfield to get the key from
  25. 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")
  26. }
  27. })
  28.  
  29. local MainTab = Window:CreateTab("Main", nil) -- Title, Image
  30. local MainSection = MainTab:CreateSection("Main")
  31. Rayfield:Notify({
  32. Title = "EXECUTED!!",
  33. Content = "SUCCESS",
  34. Duration = 5,
  35. Image = nil,
  36. Actions = { -- Notification Buttons
  37. Ignore = {
  38. Name = "Okay!",
  39. Callback = function()
  40. print("The user tapped Okay!")
  41. end
  42. },
  43. },
  44. })
  45.  
  46. local Button = MainTab:CreateButton({
  47. Name = "Emotes",
  48. Callback = function()
  49. loadstring(game:HttpGet("https://pastebin.com/raw/eCpipCTH"))()
  50. end,
  51. })
  52.  
  53. local Button = MainTab:CreateButton({
  54. Name = "SystemBroken",
  55. Callback = function()
  56. loadstring(game:HttpGet('https://raw.githubusercontent.com/H20CalibreYT/SystemBroken/main/script'))()
  57. end,
  58. })
  59.  
  60. local Button = MainTab:CreateButton({
  61. Name = "Infinite Yeild",
  62. Callback = function()
  63. loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
  64. end,
  65. })
  66.  
  67. local Button = MainTab:CreateButton({
  68. Name = "CTRL TP",
  69. Callback = function()
  70. -- CTRL+CLICK TP
  71. local Plr = game:GetService("Players").LocalPlayer
  72.  
  73. local Mouse = Plr:GetMouse()
  74.  
  75.  
  76.  
  77. Mouse.Button1Down:connect(function()
  78.  
  79. if not game:GetService("UserInputService"):IsKeyDown(Enum.KeyCode.LeftControl) then return end
  80.  
  81. if not Mouse.Target then return end
  82.  
  83. Plr.Character:MoveTo(Mouse.Hit.p)
  84.  
  85. end)
  86. end,
  87. })
  88.  
  89. local Button = MainTab:CreateButton({
  90. Name = "Baseplate",
  91. Callback = function()
  92. local Workspace = game:GetService("Workspace");
  93. local Players = game:GetService("Players");
  94. local Player = Players.LocalPlayer
  95. local Terrain = Workspace.Terrain
  96. Terrain:FillBlock(CFrame.new(66, -10, 72.5), Vector3.new(10000, 16, 10000), Enum.Material.Asphalt)
  97. end,
  98. })
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement