Advertisement
Ribjfurjxj

good script

Jul 26th, 2024
23
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.58 KB | None | 0 0
  1. local Window = Rayfield:CreateWindow({
  2. Name = "✨Noob Hub - Dummies vs Noobs Script✨",
  3. LoadingTitle = "Loading... Please Wait.",
  4. LoadingSubtitle = "by Goli from discord.",
  5. ConfigurationSaving = {
  6. Enabled = true,
  7. FolderName = nil, -- Create a custom folder for your hub/game
  8. FileName = "Big Hub"
  9. },
  10. Discord = {
  11. Enabled = false,
  12. Invite = "noinvitelink", -- The Discord invite code, do not include discord.gg/. E.g. discord.gg/ABCD would be ABCD
  13. RememberJoins = true -- Set this to false to make them join the discord every time they load it up
  14. },
  15. KeySystem = false, -- Set this to true to use our key system
  16. KeySettings = {
  17. Title = "Dummies vs Noobs - Key System",
  18. Subtitle = "Key System",
  19. Note = "go to discord?",
  20. FileName = "Key", -- It is recommended to use something unique as other scripts using Rayfield may overwrite your key file
  21. SaveKey = true, -- The user's key will be saved, but if you change the key, they will be unable to use your script
  22. GrabKeyFromSite = true, -- If this is true, set Key below to the RAW site you would like Rayfield to get the key from
  23. Key = {"https://pastebin.com/hMJJ8GXs"} -- List of keys that will be accepted by the system, can be RAW file links (pastebin, github etc) or simple strings ("hello","key22")
  24. }
  25. })
  26.  
  27. local MainTab = Window:CreateTab("🏡 Home", nil) -- Title, Image
  28. local MainSection = MainTab:CreateSection("Section Example")
  29.  
  30. Rayfield:Notify({
  31. Title = "Thanks For Execute The Script!",
  32. Content = "Notification Content",
  33. Duration = 6.5,
  34. Image = nil,
  35. Actions = { -- Notification Buttons
  36. Ignore = {
  37. Name = "cool script right?",
  38. Callback = function()
  39. print("The user tapped Okay!")
  40. end
  41. },
  42. },
  43. })
  44.  
  45. local Button = Tab:CreateButton({
  46. Name = "Button Example",
  47. Callback = function()
  48. _G.infinjump = true
  49.  
  50. local Player = game:GetService("Players").LocalPlayer
  51. local Mouse = Player:GetMouse()
  52. Mouse.KeyDown:connect(function(k)
  53. if _G.infinjump then
  54. if k:byte() == 32 then
  55. Humanoid = game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Humanoid")
  56. Humanoid:ChangeState("Jumping")
  57. wait(0.1)
  58. Humanoid:ChangeState("Seated")
  59. end
  60. end
  61. end)
  62.  
  63. local Player = game:GetService("Players").LocalPlayer
  64. local Mouse = Player:GetMouse()
  65. Mouse.KeyDown:connect(function(k)
  66. k = k:lower()
  67. if k == "t" then
  68. if _G.infinjump == true then
  69. _G.infinjump = false
  70. else
  71. _G.infinjump = true
  72. end
  73. end
  74. end)
  75. end,
  76. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement