My_GUI

Soupy Hub

Sep 3rd, 2023
35
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.74 KB | None | 0 0
  1. local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()
  2.  
  3. local Window = Rayfield:CreateWindow({
  4. Name = "Soupy Hub",
  5. LoadingTitle = "Soupy Hub Loading",
  6. LoadingSubtitle = "by @FoxyYT098",
  7. ConfigurationSaving = {
  8. Enabled = true,
  9. FolderName = Soupy Hub Folder1, -- Create a custom folder for your hub/game
  10. FileName = "sui haun hub"
  11. },
  12. Discord = {
  13. Enabled = true,
  14. Invite = "Ez5xfGh2cs", -- 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 = "Soupy Hub Key",
  20. Subtitle = "Paste the key here ⬇",
  21. Note = "Go to https://rekonise.com/soupy-hub-key-x64ej ",
  22. FileName = "Key11232323", -- It is recommended to use something unique as other scripts using Rayfield may overwrite your key file
  23. SaveKey = true, -- 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 = {"FoxyYTtm123","https://pastebin.com/raw/hbFFwm1F"} -- 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 Thingys", nil) -- Title, Image
  30. local MainSection = MainTab:CreateSection("Player")
  31.  
  32. Rayfield:Notify({
  33. Title = "Welcome To Soupy Hub",
  34. Content = "Beta test is now on!",
  35. Duration = 6.5,
  36. Image = nil,
  37. Actions = { -- Notification Buttons
  38. Ignore = {
  39. Name = "Okay!",
  40. Callback = function()
  41. print("The user tapped Okay!")
  42. end
  43. },
  44. },
  45. })
  46.  
  47.  
  48. local Button = MainTab:CreateButton({
  49. Name = "Infinite Jump",
  50. Callback = function()
  51. --Toggles the infinite jump between on or off on every script run
  52. _G.infinjump = not _G.infinjump
  53.  
  54. if _G.infinJumpStarted == nil then
  55. --Ensures this only runs once to save resources
  56. _G.infinJumpStarted = true
  57.  
  58. --Notifies readiness
  59. game.StarterGui:SetCore("SendNotification", {Title="Youtube Hub"; Text="Infinite Jump Activated!"; Duration=5;})
  60.  
  61. --The actual infinite jump
  62. local plr = game:GetService('Players').LocalPlayer
  63. local m = plr:GetMouse()
  64. m.KeyDown:connect(function(k)
  65. if _G.infinjump then
  66. if k:byte() == 32 then
  67. humanoid = game:GetService'Players'.LocalPlayer.Character:FindFirstChildOfClass('Humanoid')
  68. humanoid:ChangeState('Jumping')
  69. wait()
  70. humanoid:ChangeState('Seated')
  71. end
  72. end
  73. end)
  74. end
  75. end,
  76. })
  77.  
  78. end,
  79. })
  80.  
  81.  
  82. local Input = MainTab:CreateInput({
  83. Name = "Speed 🏃‍♂️",
  84. PlaceholderText = "Put Speed Value Here",
  85. RemoveTextAfterFocusLost = false,
  86. Callback = function(Text)
  87. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = (Text)
  88. end,
  89. })
  90.  
  91. local Input = MainTab:CreateInput({
  92. Name = "Jump Height 🦘",
  93. PlaceholderText = "Put JumpPower Value Here",
  94. RemoveTextAfterFocusLost = false,
  95. Callback = function(Text)
  96. game.Players.LocalPlayer.Character.Humanoid.JumpPower = (Text)
  97. end,
  98. })
  99.  
  100. local Button = MainTab:CreateButton({
  101. Name = "Destroy The Gui(⚠Warning⚠)",
  102. Callback = function()
  103. Rayfield:Destroy()
  104. end,
  105. })
  106.  
  107. local CreditsTab = Window:CreateTab("Credits", nil) -- Title, Image
  108. local CreditsSection = CreditsTab:CreateSection("This Gui Is Made By @FoxyYT098 And It Is Still In Beta Development!")
  109. local CreditsSection = CreditsTab:CreateSection("And Check Out This Channel (@1 F0)")
  110.  
  111.  
  112.  
Add Comment
Please, Sign In to add comment