Keimu

How high can your head fly Script

Feb 15th, 2023
238
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.07 KB | None | 0 0
  1. local plr = game:GetService("Players").LocalPlayer
  2. local char = plr.Character
  3. local humRoot = char.HumanoidRootPart
  4.  
  5. local Library = loadstring(game:HttpGet('https://raw.githubusercontent.com/wally-rblx/LinoriaLib/main/Library.lua'))()
  6.  
  7. Library.AccentColor = Color3.new(255,0,0)
  8.  
  9. local Window = Library:CreateWindow({
  10. Title = 'Balls Script',
  11. Center = true,
  12. AutoShow = true,
  13. })
  14.  
  15. local Tabs = {
  16. Main = Window:AddTab('Main'),
  17. }
  18.  
  19. local main = Tabs.Main:AddLeftGroupbox('Runes')
  20.  
  21. main:AddToggle('autoCollectRunes', {
  22. Text = 'Auto Collect Runes',
  23. Default = false,
  24. Tooltip = 'Automatically collects all runes',
  25. })
  26.  
  27. Toggles.autoCollectRunes:OnChanged(function()
  28. while Toggles.autoCollectRunes.Value do
  29. for _, v in pairs(game:GetService("Workspace").Rune:GetChildren()) do
  30. if v:FindFirstChild("Tier") and v.Tier:FindFirstChild("TouchInterest") then
  31. firetouchinterest(humRoot, v.Tier, 0)
  32. end
  33. end
  34. task.wait()
  35. end
  36. end)
  37.  
  38. main:AddToggle('autoCollectVIPRunes', {
  39. Text = 'Auto Collect Vip Runes',
  40. Default = false,
  41. Tooltip = 'Automatically collects all Vip runes',
  42. })
  43.  
  44. Toggles.autoCollectVIPRunes:OnChanged(function()
  45. while Toggles.autoCollectVIPRunes.Value do
  46. for _, v in pairs(game:GetService("Workspace").VipRune:GetChildren()) do
  47. firetouchinterest(humRoot, v.Tier, 0)
  48. end
  49. task.wait()
  50. end
  51. end)
  52.  
  53. main:AddToggle('CreateRune', {
  54. Text = 'Spawns Rune Quickly',
  55. Default = false,
  56. Tooltip = 'Creates runes rapidly',
  57. })
  58.  
  59. Toggles.CreateRune:OnChanged(function()
  60. while Toggles.CreateRune.Value do
  61. game:GetService("ReplicatedStorage").Events.Match.RuneBorn:FireServer()
  62. task.wait()
  63. end
  64. end)
  65.  
  66. main:AddLabel('Activate all for an OP rune farm')
  67.  
  68. local Misc = Tabs.Main:AddRightGroupbox('Misc.')
  69.  
  70. Misc:AddButton('Force Save', function()
  71. game:GetService("ReplicatedStorage").Events.Player.AutoSave:FireServer()
  72. end)
  73.  
  74. Misc:AddButton('Unload UI', function()
  75. Library:Unload()
  76. end)
Advertisement
Add Comment
Please, Sign In to add comment