Advertisement
pastebin2rblxscripts

source

May 19th, 2025
17
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.15 KB | None | 0 0
  1. local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()
  2.  
  3. local Window = Rayfield:CreateWindow({
  4. Name = "LT Launcher (@ky0k1d)",
  5. LoadingTitle = "LT Launcher (@ky0k1d)",
  6. LoadingSubtitle = "by @ky0k1d",
  7. ConfigurationSaving = {
  8. Enabled = true,
  9. FolderName = nil, -- Create a custom folder for your hub files
  10. FileName = "ExampleHub"
  11. },
  12. Discord = {
  13. Enabled = true, -- ✅ Enable Discord invite
  14. Invite = "XNkTDrPMYc", -- The Discord invite code
  15. RememberJoins = true -- Optional: Remember user joins
  16. },
  17. KeySystem = true, -- ✅ Enable key system
  18. KeySettings = {
  19. Title = "LT Launcher Key System",
  20. Subtitle = "Authentication Required",
  21. Note = "Key = LTOnTop",
  22. FileName = "LTKeyFile", -- Key save file (won't be saved now)
  23. SaveKey = false, -- ✅ Disable key saving
  24. GrabKeyFromSite = false,
  25. Key = "LTOnTop" -- ✅ Your custom key
  26. }
  27. })
  28.  
  29. -- Create the "hello :)" tab
  30. local HelloTab = Window:CreateTab("hello :)", 4483362458) -- The number is an icon ID, you can replace it with another icon if you prefer
  31.  
  32. -- Create the "V1" button in the "hello :)" tab
  33. HelloTab:CreateButton({
  34. Name = "V1", -- Button name
  35. Callback = function()
  36. print("V1 button clicked!") -- You can replace this with any code you want to run when the button is pressed
  37. end
  38. })
  39.  
  40. -- Create the "V2" button in the "hello :)" tab
  41. HelloTab:CreateButton({
  42. Name = "V2", -- Button name
  43. Callback = function()
  44. -- Execute the provided script when the V2 button is pressed
  45. loadstring(game:HttpGet("https://raw.githubusercontent.com/kokojoscripts/LTYKS-SCRIPT/main/ANIMAL%20SIMULATOR"))()
  46. end
  47. })
  48.  
  49. -- Create the "-Rankalf UI" button in the "hello :)" tab
  50. HelloTab:CreateButton({
  51. Name = "-Rankalf UI (low unc exec port, pc only)", -- Button name
  52. Callback = function()
  53. -- Execute the provided script when the button is pressed
  54. loadstring(game:HttpGet("https://raw.githubusercontent.com/Golddeathninja/af/refs/heads/main/a"))()
  55.  
  56. -- Display first message to the player
  57. game:GetService("StarterGui"):SetCore("SendNotification", {
  58. Title = "Script Execution Notice";
  59. Text = "xeno and nebula suck, 99% chance that script will not work";
  60. Icon = "";
  61. Duration = 5; -- How long the message stays visible (in seconds)
  62. })
  63.  
  64. -- Display second message to the player
  65. game:GetService("StarterGui"):SetCore("SendNotification", {
  66. Title = "Script Update Notice";
  67. Text = "You will have to get a new loadstring every time the script updates";
  68. Icon = "";
  69. Duration = 5; -- How long the message stays visible (in seconds)
  70. })
  71.  
  72. -- Display third message to the player
  73. game:GetService("StarterGui"):SetCore("SendNotification", {
  74. Title = "Join LT Clan";
  75. Text = "Join LT clan plizzzz";
  76. Icon = "";
  77. Duration = 5; -- How long the message stays visible (in seconds)
  78. })
  79. end
  80. })
  81.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement