Advertisement
TYDEDZZ125

ezzz

Oct 6th, 2023 (edited)
27
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.19 KB | None | 0 0
  1. local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()
  2.  
  3. local Window = Rayfield:CreateWindow({
  4. Name = "Remorse Hub",
  5. LoadingTitle = "Remorse Hub Rework",
  6. LoadingSubtitle = "by Remorse/Hsdkjhjdshc",
  7. ConfigurationSaving = {
  8. Enabled = false,
  9. FolderName = nil, -- Create a custom folder for your hub/game
  10. FileName = "Remorse 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 = True, -- Set this to true to use our key system
  18. KeySettings = {
  19. Title = "Remorse Hub Key System",
  20. Subtitle = "Key System For You :3",
  21. Note = "Getting key is in the raw pastebin",
  22. FileName = "Remorse hub key", -- It is recommended to use something unique as other scripts using Rayfield may overwrite your key file
  23. SaveKey = false, -- The user's key will be saved, but if you change the key, they will be unable to use your script
  24. GrabKeyFromSite = True, -- If this is true, set Key below to the RAW site you would like Rayfield to get the key from
  25. Key = {"https://pastebin.com/raw/KQ44JHaw,https://pastebin.com/raw/WRp23v0P"} -- List of keys that will be accepted by the system, can be RAW file links (pastebin, github etc) or simple strings ("hello","key22")
  26. }
  27. })
  28.  
  29. local MainTab = Window:CreateTab("Main", nil) -- Title, Image
  30. local MainSection = MainTab:CreateSection("Home")
  31.  
  32. Rayfield:Notify({
  33. Title = "executed have fun :3",
  34. Content = "OP gui better than my old one.",
  35. Duration = 4.4,
  36. Image = 14677758077,
  37. Actions = { -- Notification Buttons
  38. Ignore = {
  39. Name = "Yuhhh!",
  40. Callback = function()
  41. print("The user tapped Yuhhh!")
  42. end
  43. },
  44. },
  45. })
  46.  
  47. local Button = MainTab:CreateButton({
  48. Name = "First Person Macro",
  49. Callback = function()
  50. local Player = game:GetService("Players").LocalPlayer
  51. local Mouse = Player:GetMouse()
  52. local Enabled = false
  53. Mouse.KeyDown:Connect(
  54. function(Key)
  55. if Key == "c" then --input key
  56. Enabled = not Enabled
  57. if Enabled == true then
  58. repeat
  59. game:GetService("RunService").Heartbeat:wait()
  60. game:GetService("VirtualInputManager"):SendMouseWheelEvent("0.1", "0.1", true, game) -- change these numbers for higher delay
  61. game:GetService("RunService").Heartbeat:wait()
  62. game:GetService("VirtualInputManager"):SendMouseWheelEvent("0.1", "0.1", false, game)
  63. game:GetService("RunService").Heartbeat:wait()
  64. until Enabled == false
  65. end
  66. end
  67. end
  68. )
  69. end,
  70. })
  71.  
  72. local Button = MainTab:CreateButton({
  73. Name = "Infinite Jump",
  74. Callback = function()
  75. local infjmp = true
  76. game:GetService("UserInputService").jumpRequest:Connect(function()
  77. if infjmp then
  78. game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass"Humanoid":ChangeState("Jumping")
  79. end
  80. end)
  81. end,
  82. })
  83.  
  84. local Slider = MainTab:CreateSlider({
  85. Name = "Walkspeed",
  86. Range = {16, 1000},
  87. Increment = 1,
  88. Suffix = "Speed Baby Bro",
  89. CurrentValue = 16,
  90. Flag = "Slider1", -- 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
  91. Callback = function(Value)
  92. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = (Value)
  93. end,
  94. })
  95.  
  96. local LockTab = Window:CreateTab("Lock ", 4483362458) -- Title, Image
  97. local LockSection = LockTab:CreateSection("Op locks")
  98.  
  99. local Button = LockTab:CreateButton({
  100. Name = "Nyula Lock ⭐STARS USE",
  101. Callback = function()
  102. loadstring(game:HttpGet("https://raw.githubusercontent.com/nyulachan/nyula/main/nyulauh"))();
  103. end,
  104. })
  105.  
  106. local Button = LockTab:CreateButton({
  107. Name = "ai lock",
  108. Callback = function()
  109. loadstring(game:HttpGet("https://raw.githubusercontent.com/scripthubekitten/camlockv3/main/kjnjnjn", true))()
  110. end,
  111. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement