Advertisement
AA122294

1O2P3Z4A0K GUI

Feb 14th, 2025
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.88 KB | None | 0 0
  1. local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()
  2. local Window = Rayfield:CreateWindow({
  3. Name = "1O2P3Z4A0K GUI",
  4. Icon = 0, -- Icon in Topbar. Can use Lucide Icons (string) or Roblox Image (number). 0 to use no icon (default).
  5. LoadingTitle = "Rayfield Interface Suite",
  6. LoadingSubtitle = "by Sirius",
  7. Theme = "Default", -- Check https://docs.sirius.menu/rayfield/configuration/themes
  8.  
  9. DisableRayfieldPrompts = false,
  10. DisableBuildWarnings = false, -- Prevents Rayfield from warning when the script has a version mismatch with the interface
  11.  
  12. ConfigurationSaving = {
  13. Enabled = true,
  14. FolderName = nil, -- Create a custom folder for your hub/game
  15. FileName = "Big Hub"
  16. },
  17.  
  18. Discord = {
  19. Enabled = false, -- Prompt the user to join your Discord server if their executor supports it
  20. Invite = "noinvitelink", -- The Discord invite code, do not include discord.gg/. E.g. discord.gg/ ABCD would be ABCD
  21. RememberJoins = true -- Set this to false to make them join the discord every time they load it up
  22. },
  23.  
  24. KeySystem = false, -- Set this to true to use our key system
  25. KeySettings = {
  26. Title = "Untitled",
  27. Subtitle = "Key System",
  28. Note = "No method of obtaining the key is provided", -- Use this to tell the user how to get a key
  29. FileName = "Key", -- It is recommended to use something unique as other scripts using Rayfield may overwrite your key file
  30. SaveKey = true, -- The user's key will be saved, but if you change the key, they will be unable to use your script
  31. GrabKeyFromSite = false, -- If this is true, set Key below to the RAW site you would like Rayfield to get the key from
  32. Key = {"Hello"} -- List of keys that will be accepted by the system, can be RAW file links (pastebin, github etc) or simple strings ("hello","key22")
  33. }
  34. })
  35. local Tab = Window:CreateTab("Tab Example", 4483362458) -- Title, Image
  36. local Section = Tab:CreateSection("Section Example")
  37. local Button = Tab:CreateButton({
  38. Name = "Skybox",
  39. Callback = function()
  40. local s = Instance.new("Sky")
  41. s.Name = "Sky"
  42. s.Parent = game.Lighting
  43. local skyboxID = 92242694132256
  44. s.SkyboxBk = "http://www.roblox.com/asset/?id="..skyboxID
  45. s.SkyboxDn = "http://www.roblox.com/asset/?id="..skyboxID
  46. s.SkyboxFt = "http://www.roblox.com/asset/?id="..skyboxID
  47. s.SkyboxLf = "http://www.roblox.com/asset/?id="..skyboxID
  48. s.SkyboxRt = "http://www.roblox.com/asset/?id="..skyboxID
  49. s.SkyboxUp = "http://www.roblox.com/asset/?id="..skyboxID
  50. game.Lighting.TimeOfDay = 12
  51. -- The function that takes place when the button is pressed
  52. end,
  53. })
  54. local Button = Tab:CreateButton({
  55. Name = "Spam Decal",
  56. Callback = function()
  57. decalID = 115501020333815
  58. function exPro(root)
  59. for _, v in pairs(root:GetChildren()) do
  60. if v:IsA("Decal") and v.Texture ~= "http://www.roblox.com/asset/?id="..decalID then
  61. v.Parent = nil
  62. elseif v:IsA("BasePart") then
  63. v.Material = "Plastic"
  64. v.Transparency = 0
  65. local One = Instance.new("Decal", v)
  66. local Two = Instance.new("Decal", v)
  67. local Three = Instance.new("Decal", v)
  68. local Four = Instance.new("Decal", v)
  69. local Five = Instance.new("Decal", v)
  70. local Six = Instance.new("Decal", v)
  71. One.Texture = "http://www.roblox.com/asset/?id="..decalID
  72. Two.Texture = "http://www.roblox.com/asset/?id="..decalID
  73. Three.Texture = "http://www.roblox.com/asset/?id="..decalID
  74. Four.Texture = "http://www.roblox.com/asset/?id="..decalID
  75. Five.Texture = "http://www.roblox.com/asset/?id="..decalID
  76. Six.Texture = "http://www.roblox.com/asset/?id="..decalID
  77. One.Face = "Front"
  78. Two.Face = "Back"
  79. Three.Face = "Right"
  80. Four.Face = "Left"
  81. Five.Face = "Top"
  82. Six.Face = "Bottom"
  83. end
  84. exPro(v)
  85. end
  86. end
  87. function asdf(root)
  88. for _, v in pairs(root:GetChildren()) do
  89. asdf(v)
  90. end
  91. end
  92. exPro(game.Workspace)
  93. asdf(game.Workspace)
  94. -- The function that takes place when the button is pressed
  95. end,
  96. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement