Advertisement
05X2

Curse X v.1

Mar 18th, 2023 (edited)
1,178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 6.10 KB | None | 0 0
  1. local Rayfield = loadstring(game:HttpGet('https://raw.githubusercontent.com/shlexware/Rayfield/main/source'))()
  2. local placeId = game.PlaceId
  3.  
  4. if placeId == 2753915549 then
  5. BF = true
  6. map_name = "Blox Fruit"
  7. elseif placeId == 8540168650 then
  8. SUR = true
  9. map_name = "Stand Upright Rebooted"
  10. end
  11.  
  12. if BF then
  13. local Window = Rayfield:CreateWindow({
  14.    Name = "Curse X",
  15.    LoadingTitle = "Starting Cursed X...",
  16.    LoadingSubtitle = "by Cursed CH",
  17.    ConfigurationSaving = {
  18.       Enabled = true,
  19.       FolderName = nil, -- Create a custom folder for your hub/game
  20.       FileName = "Big Hub"
  21.    },
  22.    Discord = {
  23.       Enabled = false,
  24.       Invite = "noinvitelink", -- The Discord invite code, do not include discord.gg/. E.g. discord.gg/ABCD would be ABCD.
  25.       RememberJoins = true -- Set this to false to make them join the discord every time they load it up
  26.    },
  27.    KeySystem = true, -- Set this to true to use our key system
  28.    KeySettings = {
  29.       Title = "Curse X",
  30.       Subtitle = "Key System",
  31.       Note = "Hello!",
  32.       FileName = "CurseKey",
  33.       SaveKey = true,
  34.       GrabKeyFromSite = false, -- If this is true, set Key below to the RAW site you would like Rayfield to get the key from
  35.       Key = "4678"
  36.    }
  37. })
  38.  
  39. Rayfield:Notify({
  40.    Title = "System",
  41.    Content = "Curse X is working...",
  42.    Duration = 6.5,
  43.    Image = 4483362458,
  44.    Actions = { -- Notification Buttons
  45.       Ignore = {
  46.          Name = "Okay!",
  47.          Callback = function()
  48.          print("The user tapped Okay!")
  49.       end
  50.    },
  51. },
  52. })
  53.  
  54. local Tab = Window:CreateTab("Main", 4483362458) -- Title, Image
  55. local Section = Tab:CreateSection("Auto Farm")
  56. local Toggle = Tab:CreateToggle({
  57.    Name = "Auto Farm",
  58.    CurrentValue = false,
  59.    Flag = "Toggle1", -- A flag is the identifier for the configuration file, make sure every element has a different flag if you're using configuration saving to ensure no overlaps
  60.    Callback = function(Value)
  61.    -- The function that takes place when the toggle is pressed
  62.    -- The variable (Value) is a boolean on whether the toggle is true or false
  63.    end,
  64. })
  65.  
  66. local Tab = Window:CreateTab("Settings", 4483362458) -- Title, Image
  67. local Toggle = Tab:CreateToggle({
  68.    Name = "Fast Attack V.1",
  69.    CurrentValue = false,
  70.    Flag = "Toggle1", -- A flag is the identifier for the configuration file, make sure every element has a different flag if you're using configuration saving to ensure no overlaps
  71.    Callback = function(Value)
  72.       _G.FastAttack = true
  73.    end,
  74. })
  75.  
  76. local Tab = Window:CreateTab("Player", 4483362458) -- Title, Image
  77.  
  78. elseif SUR then
  79.  
  80. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
  81.  
  82. local Window = OrionLib:MakeWindow({Name = "Curse X", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest", IntroEnabled = true, IntroText = "Starting Curse X..."})
  83.  
  84. local pl = game.Players.LocalPlayer.Character.HumanoidRootPart
  85.  
  86. local function m1()
  87.     while getgenv().m1 == true do
  88.         game:GetService("Players").LocalPlayer.Character.StandEvents.M1:FireServer()
  89.         wait()
  90.     end
  91. end
  92.  
  93. local function heavy()
  94.     while getgenv().heavy == true do
  95.         game:GetService("Players").LocalPlayer.Character.StandEvents.Heavy:FireServer()
  96.         wait()
  97.     end
  98. end
  99.  
  100.  
  101. local function tm()
  102.     while getgenv().T == true do
  103.         wait()
  104.         keypress(0x54)
  105.         keyrelease(0x54)
  106.     end
  107. end
  108.  
  109. local function zm()
  110.     while getgenv().Z == true do
  111.         wait()
  112.         keypress(0x5A)
  113.         keyrelease(0x5A)
  114.     end
  115. end
  116.  
  117. local function hm()
  118.     while getgenv().H == true do
  119.         wait()
  120.         keypress(0x48)
  121.         keyrelease(0x48)
  122.     end
  123. end
  124.  
  125. local function xm()
  126.     while getgenv().X == true do
  127.         wait()
  128.         keypress(0x58)
  129.         keyrelease(0x58)
  130.     end
  131. end
  132.  
  133. local function fm()
  134.     while getgenv().F == true do
  135.         wait()
  136.         keypress(0x46)
  137.         keyrelease(0x46)
  138.     end
  139. end
  140.  
  141. local Tab = Window:MakeTab({
  142.     Name = "Main",
  143.     Icon = "rbxassetid://4483345998",
  144.     PremiumOnly = false
  145. })
  146.  
  147. local Section = Tab:AddSection({
  148.     Name = "Auto"
  149. })
  150.  
  151. Tab:AddButton({
  152.     Name = "รับเควส",
  153.     Callback = function()
  154. workspace.Map.NPCs:FindFirstChild("Muhammed Avdol").Done:FireServer()
  155.     end    
  156. })
  157.  
  158. Tab:AddButton({
  159.     Name = "ส่งเควส",
  160.     Callback = function()
  161.          workspace.Map.NPCs:FindFirstChild("Muhammed Avdol").QuestDone:FireServer()
  162.     end    
  163. })
  164.  
  165. Tab:AddToggle({
  166.     Name = "Auto Quest",
  167.     Default = false,
  168.     Callback = function(Value)
  169.      
  170.     end    
  171. })
  172.  
  173. local Tab = Window:MakeTab({
  174.     Name = "Settings",
  175.     Icon = "rbxassetid://4483345998",
  176.     PremiumOnly = false
  177. })
  178.  
  179. else
  180. local Window = Rayfield:CreateWindow({
  181.    Name = "Curse X",
  182.    LoadingTitle = "Starting Cursed X...",
  183.    LoadingSubtitle = "by Cursed CH",
  184.    ConfigurationSaving = {
  185.       Enabled = true,
  186.       FolderName = nil, -- Create a custom folder for your hub/game
  187.       FileName = "Big Hub"
  188.    },
  189.    Discord = {
  190.       Enabled = false,
  191.       Invite = "noinvitelink", -- The Discord invite code, do not include discord.gg/. E.g. discord.gg/ABCD would be ABCD.
  192.       RememberJoins = true -- Set this to false to make them join the discord every time they load it up
  193.    },
  194.    KeySystem = false, -- Set this to true to use our key system
  195.    KeySettings = {
  196.       Title = "Curse X",
  197.       Subtitle = "Key System",
  198.       Note = "Hello!",
  199.       FileName = "CurseKey",
  200.       SaveKey = true,
  201.       GrabKeyFromSite = false, -- If this is true, set Key below to the RAW site you would like Rayfield to get the key from
  202.       Key = "4678"
  203.    }
  204. })
  205.  
  206. Rayfield:Notify({
  207.    Title = "System",
  208.    Content = "Curse X not support this experience!",
  209.    Duration = 6.5,
  210.    Image = 4483362458,
  211.    Actions = { -- Notification Buttons
  212.       Ignore = {
  213.          Name = "Ok",
  214.          Callback = function()
  215.          print("The user tapped Okay!")
  216.          
  217. local Tab = Window:CreateTab("Information!", 4483362458) -- Title, Image
  218. local Section = Tab:CreateSection("Script not support this experience :(")
  219.       end
  220.    },
  221. },
  222. })
  223. end
  224.  
Tags: Script
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement