Advertisement
Guest User

Untitled

a guest
Oct 27th, 2024
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 18.85 KB | None | 0 0
  1. local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()
  2.  
  3. if game.PlaceId == 15338697306 then
  4.  
  5. Rayfield:Notify({
  6. Title = "Script executed",
  7. Content = "Script by Devappl",
  8. Duration = 6.5,
  9. Image = 4483362458,
  10. Actions = {
  11. Ignore = {
  12. Name = "Okay!",
  13. Callback = function()
  14. print("The user tapped Okay!")
  15. end
  16. },
  17. },
  18. })
  19.  
  20. local RainbowKartToggled = false
  21. local AutoRebrithToggled = false
  22. local AutoWinMultiplyToggled = false
  23.  
  24. local Window = Rayfield:CreateWindow({
  25. Name = "Go Kart Race Simulator | Script by Devappl",
  26. LoadingTitle = "Go Kart Race Simulator Script",
  27. LoadingSubtitle = "by Devappl",
  28. ConfigurationSaving = {
  29. Enabled = flase,
  30. FolderName = nil,
  31. FileName = "goKartRaceSimulatorScript"
  32. },
  33. Discord = {
  34. Enabled = false,
  35. Invite = "noinvitelink",
  36. RememberJoins = true
  37. },
  38. KeySystem = false,
  39. KeySettings = {
  40. Title = "Go Kart Race Simulator Script",
  41. Subtitle = "by Devappl",
  42. Note = "This script is in closed beta, no keys are currently available.",
  43. FileName = "Keysystem",
  44. SaveKey = false,
  45. GrabKeyFromSite = false,
  46. Key = {""}
  47. }
  48. })
  49.  
  50.  
  51. local MainTab = Window:CreateTab("Home", 4483362458)
  52. local MainSection = MainTab:CreateSection("Main")
  53.  
  54. local ClickerTab = Window:CreateTab("Clicker", 4483362458)
  55. local ClickerSection = ClickerTab:CreateSection("Clicker")
  56.  
  57. local PlayerTab = Window:CreateTab("Player", 4483362458)
  58. local PlayerSection = PlayerTab:CreateSection("Player")
  59.  
  60. local EggTab = Window:CreateTab("Eggs", 4483362458)
  61. local EggSection = EggTab:CreateSection("Eggs")
  62.  
  63. local RewardsTab = Window:CreateTab("Rewards", 4483362458)
  64. local RewardsSection = RewardsTab:CreateSection("Rewards")
  65.  
  66. local KartsTab = Window:CreateTab("Karts", 4483362458)
  67. local KartsSection = KartsTab:CreateSection("Karts")
  68.  
  69. local ScriptsTab = Window:CreateTab("Scripts", 4483362458)
  70. local ScriptsSection = ScriptsTab:CreateSection("Scripts")
  71.  
  72.  
  73. -----[ MAIN TAB ]-----
  74.  
  75. local Paragraph = MainTab:CreateParagraph({Title = "Script Information", Content = "I will probably not update this script much more, this is the best it will get with the games limitations and my current skill. (And also the softlock I put myself in with -9.22QN wins)"})
  76.  
  77.  
  78. -----[ EGGS TAB ]-----
  79.  
  80. local EggLabel = EggTab:CreateLabel("Normal eggs require you to have their UI open")
  81.  
  82. local EggDropdown = EggTab:CreateDropdown({
  83. Name = "Select Egg",
  84. Options = {"Common Egg","Space Egg"},
  85. CurrentOption = {"Common Egg"},
  86. MultipleOptions = false,
  87. Flag = "selectEgg",
  88. Callback = function(Option)
  89. print((Option[1]))
  90. end,
  91. })
  92.  
  93. local RobuxEggDropdown = EggTab:CreateDropdown({
  94. Name = "Select Robux Egg",
  95. Options = {"Magma Egg","Deadly Egg", "Dominus Egg"},
  96. CurrentOption = {"Magma Egg"},
  97. MultipleOptions = false,
  98. Flag = "selectRobuxEgg",
  99. Callback = function(Option)
  100. print((Option[1]))
  101. end,
  102. })
  103.  
  104. local EggAmountLabel = EggTab:CreateLabel("Bypassing triple hatch only works sometimes")
  105.  
  106. local EggAmountSlider = EggTab:CreateSlider({
  107. Name = "Egg Amount",
  108. Range = {1, 1000},
  109. Increment = 1,
  110. Suffix = "Eggs",
  111. CurrentValue = 1,
  112. Flag = "eggAmountSlider",
  113. Callback = function(Value)
  114. print((Value))
  115. end,
  116. })
  117.  
  118. local BasicHatchButton = EggTab:CreateButton({
  119. Name = "Hatch Normal Egg(s)",
  120. Callback = function()
  121. game:GetService("ReplicatedStorage"):WaitForChild("Assets"):WaitForChild("Signals"):WaitForChild("Functions"):WaitForChild("BuyEgg"):InvokeServer(EggDropdown.CurrentOption[1], EggAmountSlider.CurrentValue)
  122. end,
  123. })
  124.  
  125. local RobuxHatchButton = EggTab:CreateButton({
  126. Name = "Hatch Robux Egg(s)",
  127. Callback = function()
  128. game:GetService("ReplicatedStorage"):WaitForChild("Assets"):WaitForChild("Signals"):WaitForChild("Functions"):WaitForChild("BuyEgg"):InvokeServer(RobuxEggDropdown.CurrentOption[1], EggAmountSlider.CurrentValue)
  129. end,
  130. })
  131.  
  132.  
  133. -----[ PLAYER TAB ]-----
  134.  
  135. local SpeedSlider = PlayerTab:CreateSlider({
  136. Name = "Speed Slider",
  137. Range = {1, 250},
  138. Increment = 1,
  139. Suffix = "Speed",
  140. CurrentValue = 16,
  141. Flag = "speedSlider",
  142. Callback = function(Value)
  143. while wait() do
  144. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = (Value)
  145. end
  146. end,
  147. })
  148.  
  149. local UnstuckButton = PlayerTab:CreateButton({
  150. Name = "Unstuck",
  151. Callback = function()
  152. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("EndRace"):FireServer()
  153. print("Attempted to leave race")
  154. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("Train"):FireServer("Nil","Finish")
  155. print("Attempted to stop training")
  156. end,
  157. })
  158.  
  159.  
  160. -----[ CLICKER TAB ]-----
  161.  
  162. local WinsWarningLabel = ClickerTab:CreateLabel("Getting more than 9.22QN wins will set them to -9.22QN. This will make it so that you will not be able to buy certain things anymore")
  163.  
  164. local WinsMultiplierDropdown = ClickerTab:CreateDropdown({
  165. Name = "Wins Multiplier",
  166. Options = {"x1.12","x1.15","x1.17"},
  167. CurrentOption = {"x1.12"},
  168. MultipleOptions = false,
  169. Flag = "selectMultiplierReward",
  170. Callback = function(Option)
  171. print((Option[1]))
  172. end,
  173. })
  174.  
  175. local MultiplyWinsButton = ClickerTab:CreateButton({
  176. Name = "Multiply Wins",
  177. Callback = function()
  178. if WinsMultiplierDropdown.CurrentOption[1] == "x1.12" then
  179. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("Spin"):FireServer(7)
  180. elseif WinsMultiplierDropdown.CurrentOption[1] == "x1.15" then
  181. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("Spin"):FireServer(1)
  182. elseif WinsMultiplierDropdown.CurrentOption[1] == "x1.17" then
  183. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("Spin"):FireServer(6)
  184. else
  185. print("Win Multiplication Error")
  186. end
  187. end,
  188. })
  189.  
  190. local AutoWinMultiplyToggle = ClickerTab:CreateToggle({
  191. Name = "Auto Multiply Wins",
  192. CurrentValue = false,
  193. Flag = "autoMultiplyWins",
  194. Callback = function(Value)
  195. AutoWinMultiplyToggled = not AutoWinMultiplyToggled
  196. if AutoWinMultiplyToggled then
  197. while AutoWinMultiplyToggled do
  198. if WinsMultiplierDropdown.CurrentOption[1] == "x1.12" then
  199. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("Spin"):FireServer(7)
  200. elseif WinsMultiplierDropdown.CurrentOption[1] == "x1.15" then
  201. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("Spin"):FireServer(1)
  202. elseif WinsMultiplierDropdown.CurrentOption[1] == "x1.17" then
  203. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("Spin"):FireServer(6)
  204. else
  205. print("Auto Win Multiplication Error")
  206. end
  207. wait()
  208. end
  209. end
  210. end,
  211. })
  212.  
  213. local PowerWarningLabel = ClickerTab:CreateLabel("Getting more than 9.22QN power will set it to -9.22QN. Having negative power makes you move at 0 speed")
  214.  
  215. local PowerInput = ClickerTab:CreateInput({
  216. Name = "Give Power",
  217. PlaceholderText = "0",
  218. RemoveTextAfterFocusLost = true,
  219. Callback = function(Text)
  220. local text_without_quotes = Text:gsub('"', '')
  221. local integer_value = tonumber(text_without_quotes)
  222. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("ClientRemote"):InvokeServer("Train","Power",(tonumber(integer_value)/2)-50)
  223. end,
  224. })
  225.  
  226. local RebirthButton = ClickerTab:CreateButton({
  227. Name = "Rebirth",
  228. Callback = function()
  229. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("ClientRemote"):InvokeServer("Rebirth")
  230. end,
  231. })
  232.  
  233. local AutoRebirthToggle = ClickerTab:CreateToggle({
  234. Name = "Auto Rebirth",
  235. CurrentValue = false,
  236. Flag = "autoRebirth",
  237. Callback = function(Value)
  238. AutoRebrithToggled = not AutoRebrithToggled
  239. if AutoRebrithToggled then
  240. while AutoRebrithToggled do
  241. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("ClientRemote"):InvokeServer("Rebirth")
  242. wait()
  243. end
  244. end
  245. end,
  246. })
  247.  
  248.  
  249. -----[ REWARDS TAB ]-----
  250.  
  251. local ClaimAllRewardsButton = RewardsTab:CreateButton({
  252. Name = "Claim All Rewards",
  253. Callback = function()
  254. local countMax = 8
  255. local count = 0
  256.  
  257. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("addSpin"):FireServer()
  258. print("Attempted to add Spins")
  259. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("XmasK"):FireServer()
  260. print("Attempted to claim Free Kart")
  261.  
  262. for i = 1, countMax do
  263. count = count + 1
  264. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("Daily"):FireServer("D"..count)
  265. print("Attempted to claim Daily Gift",count)
  266. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("Gift"):FireServer("G"..count)
  267. print("Attempted to claim Playtime Reward",count)
  268. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("Spin"):FireServer(count)
  269. print("Attempted to claim Wheel Reward",count)
  270.  
  271. end
  272. end
  273. })
  274.  
  275. local VerifyButton = RewardsTab:CreateButton({
  276. Name = "Spoof Verify Twitter",
  277. Callback = function()
  278. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("ClientRemote"):InvokeServer("Verify")
  279. end,
  280. })
  281.  
  282. local RewardSelectionLabel = RewardsTab:CreateLabel("Only the wheel has 8 bonuses, selecting higher than 7 on daily or playtime does nothing")
  283.  
  284. local RewardDropdown = RewardsTab:CreateDropdown({
  285. Name = "Reward Type",
  286. Options = {"Daily","Playtime","Wheel"},
  287. CurrentOption = {"Daily"},
  288. MultipleOptions = false,
  289. Flag = "selectReward",
  290. Callback = function(Option)
  291. print((Option[1]))
  292. end,
  293. })
  294.  
  295. local RewardsSlider = RewardsTab:CreateSlider({
  296. Name = "Reward Number",
  297. Range = {1, 8},
  298. Increment = 1,
  299. Suffix = "",
  300. CurrentValue = 1,
  301. Flag = "rewardsSlider",
  302. Callback = function(Value)
  303. print((Value))
  304. end,
  305. })
  306.  
  307. local RewardButton = RewardsTab:CreateButton({
  308. Name = "Give Selected Reward",
  309. Callback = function()
  310. if RewardDropdown.CurrentOption[1] == "Daily" then
  311. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("Daily"):FireServer("D"..RewardsSlider.CurrentValue)
  312. print("Attempted to claim Daily Gift",RewardsSlider.CurrentValue)
  313. elseif RewardDropdown.CurrentOption[1] == "Playtime" then
  314. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("Gift"):FireServer("G"..RewardsSlider.CurrentValue)
  315. print("Attempted to claim Playtime Reward",RewardsSlider.CurrentValue)
  316. elseif RewardDropdown.CurrentOption[1] == "Wheel" then
  317. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("Spin"):FireServer(RewardsSlider.CurrentValue)
  318. print("Attempted to claim Wheel Reward",RewardsSlider.CurrentValue)
  319. else
  320. print("Reward Button Error")
  321. end
  322. end,
  323. })
  324.  
  325. local BoostLabel = RewardsTab:CreateLabel("Boosts might take a while to show up")
  326.  
  327. local BoostDropdown = RewardsTab:CreateDropdown({
  328. Name = "Boost Type",
  329. Options = {"x2 Stats","x2 Wins"},
  330. CurrentOption = {"x2 Stats"},
  331. MultipleOptions = false,
  332. Flag = "selectBoost",
  333. Callback = function(Option)
  334. print((Option[1]))
  335. end,
  336. })
  337.  
  338. local BoostDurationDropdown = RewardsTab:CreateDropdown({
  339. Name = "Boost duration",
  340. Options = {"15 Minutes","1 Hour"},
  341. CurrentOption = {"15 Minutes"},
  342. MultipleOptions = false,
  343. Flag = "selectBoostDuration",
  344. Callback = function(Option)
  345. print((Option[1]))
  346. end,
  347. })
  348.  
  349. local GiveBoostButton = RewardsTab:CreateButton({
  350. Name = "Give Boost",
  351. Callback = function()
  352. if BoostDropdown.CurrentOption[1] == "x2 Stats" then
  353. if BoostDurationDropdown.CurrentOption[1] == "15 Minutes" then
  354. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("Gift"):FireServer("G7")
  355. elseif BoostDurationDropdown.CurrentOption[1] == "1 Hour" then
  356. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("Daily"):FireServer("D3")
  357. else
  358. print("Stats Boost Error")
  359. end
  360. elseif BoostDropdown.CurrentOption[1] == "x2 Wins" then
  361. if BoostDurationDropdown.CurrentOption[1] == "15 Minutes" then
  362. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("Gift"):FireServer("G3")
  363. elseif BoostDurationDropdown.CurrentOption[1] == "1 Hour" then
  364. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("Daily"):FireServer("D4")
  365. else
  366. print("Win Boost Error")
  367. end
  368. else
  369. print("Boost Button Error")
  370. end
  371. end,
  372. })
  373.  
  374. -----[ SCRIPTS TAB ]-----
  375.  
  376. local ScriptsLabel = ScriptsTab:CreateLabel("Utility scripts that might come in handy")
  377.  
  378. local InfiniteYieldButton = ScriptsTab:CreateButton({
  379. Name = "Infinite Yield v5.9.4",
  380. Callback = function()
  381. loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
  382. end,
  383. })
  384.  
  385. local SimpleSpyButton = ScriptsTab:CreateButton({
  386. Name = "Simple Spy v3",
  387. Callback = function()
  388. loadstring(game:HttpGet("https://raw.githubusercontent.com/78n/SimpleSpy/main/SimpleSpySource.lua"))()
  389. end,
  390. })
  391.  
  392. -----[ KARTS TAB ]-----
  393.  
  394. local SpecialKartLabel = KartsTab:CreateLabel('The special kart is sometimes a "Xmas" kart, and sometimes a "Heart" kart')
  395.  
  396. local SpecialKartButton = KartsTab:CreateButton({
  397. Name = "Give Special Kart",
  398. Callback = function()
  399. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("XmasK"):FireServer()
  400. end,
  401. })
  402.  
  403. local RainbowLabel = KartsTab:CreateLabel("Each rainbow cycle costs 878200 wins")
  404.  
  405. local RainbowDelaySlider = KartsTab:CreateSlider({
  406. Name = "Rainbow Delay",
  407. Range = {1, 1000},
  408. Increment = 1,
  409. Suffix = "Ms",
  410. CurrentValue = 100,
  411. Flag = "rainbowDelaySlider",
  412. Callback = function(Value)
  413. print((Value))
  414. end,
  415. })
  416.  
  417. local RainbowKartToggle = KartsTab:CreateToggle({
  418. Name = "Rainbow Kart",
  419. CurrentValue = false,
  420. Flag = "rainbowKart",
  421. Callback = function(Value)
  422. AutoRebrithToggled = not AutoRebrithToggled
  423. if AutoRebrithToggled then
  424. while AutoRebrithToggled do
  425. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("BuyKick"):FireServer("Really red")
  426. wait(RainbowDelaySlider.CurrentValue/1000)
  427. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("BuyKick"):FireServer("New Yeller")
  428. wait(RainbowDelaySlider.CurrentValue/1000)
  429. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("BuyKick"):FireServer("Earth green")
  430. wait(RainbowDelaySlider.CurrentValue/1000)
  431. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("BuyKick"):FireServer("Cyan")
  432. wait(RainbowDelaySlider.CurrentValue/1000)
  433. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("BuyKick"):FireServer("Dark indigo")
  434. wait(RainbowDelaySlider.CurrentValue/1000)
  435. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("BuyKick"):FireServer("Hot pink")
  436. wait(RainbowDelaySlider.CurrentValue/1000)
  437. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("BuyKick"):FireServer("Reddish brown")
  438. wait(RainbowDelaySlider.CurrentValue/1000)
  439. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("BuyKick"):FireServer("Dark stone grey")
  440. wait(RainbowDelaySlider.CurrentValue/1000)
  441. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("BuyKick"):FireServer("Bronze")
  442. wait(RainbowDelaySlider.CurrentValue/1000)
  443. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("BuyKick"):FireServer("Gold")
  444. wait(RainbowDelaySlider.CurrentValue/1000)
  445. end
  446. end
  447. end,
  448. })
  449.  
  450.  
  451. else
  452. Rayfield:Notify({
  453. Title = "Script failed",
  454. Content = "Not in the correct game",
  455. Duration = 6.5,
  456. Image = 4483362458,
  457. Actions = {
  458. Ignore = {
  459. Name = "Okay!",
  460. Callback = function()
  461. print("The user tapped Okay!")
  462. end
  463. },
  464. },
  465. })
  466. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement