Advertisement
Keimu

Every Second You Get +1 Points Script

Apr 3rd, 2023
1,602
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.85 KB | None | 0 0
  1. local Rayfield = loadstring(game:HttpGet('https://raw.githubusercontent.com/shlexware/Rayfield/main/source'))()
  2.  
  3. local Window = Rayfield:CreateWindow({
  4. Name = "Game exploit",
  5. LoadingTitle = "VERSION 1",
  6. LoadingSubtitle = "by NamesofUsernames",
  7. ConfigurationSaving = {
  8. Enabled = true,
  9. FolderName = nil, -- Create a custom folder for your hub/game
  10. FileName = "Big Hub"
  11. },
  12. Discord = {
  13. Enabled = false,
  14. Invite = "noinvitelink", -- The Discord invite code, do not include discord.gg/. E.g. discord.gg/ABCD would be ABCD.
  15. RememberJoins = true -- Set this to false to make them join the discord every time they load it up
  16. },
  17. KeySystem = false, -- Set this to true to use our key system
  18. KeySettings = {
  19. Title = "Sirius Hub",
  20. Subtitle = "Key System",
  21. Note = "Join the discord (discord.gg/sirius)",
  22. FileName = "SiriusKey",
  23. SaveKey = true,
  24. GrabKeyFromSite = false, -- If this is true, set Key below to the RAW site you would like Rayfield to get the key from
  25. Key = "Hello"
  26. }
  27. })
  28.  
  29. local Tab = Window:CreateTab("Autofarm", 4483362458) -- Title, Image
  30. local Section = Tab:CreateSection("Section Example")
  31.  
  32. local Button = Tab:CreateButton({
  33. Name = "Start autofarm!",
  34. Callback = function()
  35. Rayfield:Notify({
  36. Title = "Autofarm started!",
  37. Content = "500K Points per second :)",
  38. Duration = 6.5,
  39. Image = 4483362458,
  40. Actions = { -- Notification Buttons
  41. Ignore = {
  42. Name = "Okay!",
  43. Callback = function()
  44. end
  45. },
  46. },
  47. })
  48. local player = game:GetService("Players").LocalPlayer
  49. local stage = game:GetService("Workspace").Wins.Stage8 --edit 8 on "1/2/3/4/5/6/7"
  50. local stageCFrame = stage.CFrame
  51. while true do
  52. player.Character:SetPrimaryPartCFrame(stageCFrame)
  53. wait(1)
  54. end
  55. end,
  56.  
  57.  
  58. })
  59.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement