Advertisement
NotExotic

natual

Sep 21st, 2023
33
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.94 KB | None | 0 0
  1. local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()
  2. local Window = Rayfield:CreateWindow({
  3. Name = "Bob UI",
  4. LoadingTitle = "Loading Bob UI",
  5. LoadingSubtitle = "by Bob YT",
  6. ConfigurationSaving = {
  7. Enabled = true,
  8. FolderName = nil, -- Create a custom folder for your hub/game
  9. FileName = "Bob Hub"
  10. },
  11. Discord = {
  12. Enabled = false,
  13. Invite = "noinvitelink", -- The Discord invite code, do not include discord.gg/. E.g. discord.gg/ABCD would be ABCD
  14. RememberJoins = true -- Set this to false to make them join the discord every time they load it up
  15. },
  16. KeySystem = false, -- Set this to true to use our key system
  17. KeySettings = {
  18. Title = "Untitled",
  19. Subtitle = "Key System",
  20. Note = "No method of obtaining the key is provided",
  21. FileName = "Key", -- It is recommended to use something unique as other scripts using Rayfield may overwrite your key file
  22. SaveKey = true, -- The user's key will be saved, but if you change the key, they will be unable to use your script
  23. GrabKeyFromSite = false, -- If this is true, set Key below to the RAW site you would like Rayfield to get the key from
  24. 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")
  25. }
  26. })
  27.  
  28. local NatualTab = Window:CreateTab("🏝 Natual Disaster Survival 🏝", nil) -- Title, Image
  29. local NatualSection = NatualTab:CreateSection("🏝 Natual Disaster Survival 🏝")
  30.  
  31. local Button = NatualTab:CreateButton({
  32. Name = "Teleport to Spawn 👍",
  33. Callback = function()
  34. loadstring(game:HttpGet("https://pastebin.com/raw/cWcVVj8X"))()
  35. end,
  36. })
  37.  
  38. local Button = NatualTab:CreateButton({
  39. Name = "Teleport to Island 👍",
  40. Callback = function()
  41. loadstring(game:HttpGet("https://pastebin.com/raw/CZGrS3QP"))()
  42. end,
  43. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement