Advertisement
Eser132001

BLADE BALL GUI we know there are 1 bug we will fix it soon

Nov 22nd, 2023
30
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.73 KB | None | 0 0
  1. local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()
  2.  
  3. local Window = Blade Ball Script({
  4. Name = "Rayfield Example Window",
  5. LoadingTitle = "Rayfield Interface Suite",
  6. LoadingSubtitle = "by space123GoodPlayerBl",
  7. ConfigurationSaving = {
  8. Enabled = true,
  9. FolderName = nil, -- Create a custom folder for your hub/game
  10. FileName = "Welcome"
  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 = "Please Get The Key. for cool exploits!",
  20. Subtitle = "Key System",
  21. Note = "No method of obtaining the key is provided",
  22. FileName = "Key", -- 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 = {"https://pastebin.com/raw/4WinAwVi"} -- 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("Home", nil) -- Title, Image
  30. local MainSection = MainTab:CreateSection("Main")
  31.  
  32. Rayfield:Notify({
  33. Title = "You Executed The Script!",
  34. Content = "Very Good Gui",
  35. Duration = 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. local Button = MainTab:CreateButton({
  48. Name = "Infinite Jump",
  49. Callback = function()
  50. -- by isaraw8912
  51. -- Press [R] to turn off and to turn on
  52.  
  53. _G.infinjump = true
  54.  
  55. local Player = game:GetService("Players").LocalPlayer
  56. local Mouse = Player:GetMouse()
  57. Mouse.KeyDown:connect(function(k)
  58. if _G.infinjump then
  59. if k:byte() == 32 then
  60. Humanoid = game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Humanoid")
  61. Humanoid:ChangeState("Jumping")
  62. wait(0.1)
  63. Humanoid:ChangeState("Seated")
  64. end
  65. end
  66. end)
  67.  
  68. local Player = game:GetService("Players").LocalPlayer
  69. local Mouse = Player:GetMouse()
  70. Mouse.KeyDown:connect(function(k)
  71. k = k:lower()
  72. if k == "r" then
  73. if _G.infinjump == true then
  74. _G.infinjump = false
  75. else
  76. _G.infinjump = true
  77. end
  78. end
  79. end) -- The function that takes place when the button is pressed
  80.  
  81. end,
  82. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement