My_GUI

Poppy Hub new

Jul 5th, 2023 (edited)
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.02 KB | None | 0 0
  1. local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()
  2.  
  3. local Window = Rayfield:CreateWindow({
  4. Name = "Poppy HUB",
  5. LoadingTitle = "Poppy Hub started!",
  6. LoadingSubtitle = "by FoxyYTtm",
  7. ConfigurationSaving = {
  8. Enabled = true,
  9. FolderName = nil, -- Create a custom folder for your hub/game
  10. FileName = "Poppy Hub"
  11. },
  12. Discord = {
  13. Enabled = true,
  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 = "Gui key system",
  20. Subtitle = "Key System",
  21. Note = "Go to https://pastebin.com/raw/aYHGEm1y",
  22. FileName = "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/aYHGEm1y"} -- 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("Speed / Jump", nil) -- Title, Image
  30. local MainSection = MainTab:CreateSection("Main")
  31.  
  32. Rayfield:Notify({
  33. Title = "Executed Succecsfully ✔✅",
  34. Content = "My second GUI",
  35. Duration = 3,
  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. local Button = MainTab:CreateButton({
  48. Name = "Infinite Jump",
  49. Callback = function()
  50. --Toggles the infinite jump between on or off on every script run
  51. _G.infinjump = not _G.infinjump
  52.  
  53. if _G.infinJumpStarted == nil then
  54. --Ensures this only runs once to save resources
  55. _G.infinJumpStarted = true
  56.  
  57. --Notifies readiness
  58. game.StarterGui:SetCore("SendNotification", {Title="Youtube Hub"; Text="Infinite Jump Activated!"; Duration=5;})
  59.  
  60. --The actual infinite jump
  61. local plr = game:GetService('Players').LocalPlayer
  62. local m = plr:GetMouse()
  63. m.KeyDown:connect(function(k)
  64. if _G.infinjump then
  65. if k:byte() == 32 then
  66. humanoid = game:GetService'Players'.LocalPlayer.Character:FindFirstChildOfClass('Humanoid')
  67. humanoid:ChangeState('Jumping')
  68. wait()
  69. humanoid:ChangeState('Seated')
  70. end
  71. end
  72. end)
  73. end
  74. end,
  75. })
  76.  
  77. local PlayerTab = Window:CreateTab("Player", nil) -- Title, Image
  78. local PlayerSection = PlayerTab:CreateSection("Player Jump/Speed")
  79.  
  80. local PlayerSlider = PlayerTab:CreateSlider({
  81. Name = "Walking Speed",
  82. Range = {0, 100000},
  83. Increment = 1,
  84. Suffix = "Speed",
  85. CurrentValue = 16,
  86. Flag = "Mybad", -- 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
  87. Callback = function(Value)
  88. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = (Value)
  89. end,
  90. })
  91.  
  92. local Input = PlayerTab:CreateInput({
  93. Name = "Jump Power",
  94. PlaceholderText = "1-100000",
  95. RemoveTextAfterFocusLost = true,
  96. Callback = function(Text)
  97. game.Players.LocalPlayer.Character.Humanoid.JumpPower = (Text)
  98. end,
  99. })
  100.  
  101. local Button = PlayerTab:CreateButton({
  102. Name = "God mode GUI",
  103. Callback = function()
  104. loadstring(game:HttpGet("https://raw.githubusercontent.com/zephyr10101/ignore-touchinterests/main/main",true))()
  105. end,
  106. })
  107.  
  108. local CreditsTab = Window:CreateTab("Credits", nil) -- Title, Image
  109. local CreditsSection = CreditsTab:CreateSection("Credits to FoxyYTtm")
  110. local CreditsSection = CreditsTab:CreateSection("Learned By 1 F0 Check his channel out!!")
  111.  
Add Comment
Please, Sign In to add comment