Advertisement
Guest User

Untitled

a guest
Nov 3rd, 2021
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.72 KB | None | 0 0
  1. local Library = loadstring(game:HttpGet('https://raw.githubusercontent.com/astraln/SentinelUILIB/main/UI.lua', true))()
  2.  
  3. local win= Library:Window('Infinite Seas')
  4.  
  5.  
  6.  
  7. local ss = win:Tab("MAIN")
  8. local sss = win:Tab("MISC")
  9.  
  10. local Chests = {}
  11. for i,v in pairs(game:GetService("Workspace").Game.Chests:GetChildren()) do
  12. if not table.find(Chests,v.Name) then
  13. table.insert(Chests,v.Name)
  14. end
  15. end
  16.  
  17. local Mobs_Table = {}
  18. for i,v in pairs(game:GetService("Workspace").Game.Characters.Mobs:GetDescendants()) do
  19. if v:IsA("Model") and not table.find(Mobs_Table,v.Name) then
  20. table.insert(Mobs_Table,v.Name)
  21. end
  22. end
  23.  
  24. ss:Dropdown("Chests To Farm",Chests,function(t)
  25. ChestT = t
  26. end)
  27.  
  28. ss:Toggle("Farm Chest",false,function(t)
  29. Farm = t
  30. while Farm do wait()
  31. pcall(function()
  32. for i,v in pairs(game:GetService("Workspace").Game.Chests:GetChildren()) do
  33. if v.Name == ChestT and v.Transparency == 0 then
  34. repeat
  35. wait()
  36. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame
  37. game:GetService("VirtualInputManager"):SendKeyEvent(true, Enum.KeyCode.T, false, game)
  38. until v.Transparency == 1 or Farm == false
  39. end
  40. end
  41. end)
  42. end
  43. end)
  44.  
  45. ss:Toggle("Farm All Chests",false,function(t)
  46. Farm1 = t
  47. while Farm1 do wait()
  48. pcall(function()
  49. for i,v in pairs(game:GetService("Workspace").Game.Chests:GetChildren()) do
  50. if v.Transparency == 0 then
  51. repeat
  52. wait()
  53. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame
  54. game:GetService("VirtualInputManager"):SendKeyEvent(true, Enum.KeyCode.T, false, game)
  55. until v.Transparency == 1 or Farm1 == false
  56. end
  57. end
  58. end)
  59. end
  60. end)
  61.  
  62. ss:Dropdown("Mobs To Farm",Mobs_Table,function(t)
  63. npc = t
  64. end)
  65.  
  66. ss:Toggle("Autofarm Mobs",false,function(t)
  67.  
  68. pcall(function()
  69. game:GetService("RunService").Stepped:Connect(function()
  70. if Enabled then
  71. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  72. end
  73. end)
  74. end)
  75.  
  76. Enabled = t
  77. while Enabled do wait()
  78. pcall(function()
  79. for i,v in pairs(game:GetService("Workspace").Game.Characters.Mobs:GetDescendants()) do
  80. if v.Name == npc and v:FindFirstChild("HumanoidRootPart") and v:FindFirstChild("Humanoid") then
  81. repeat
  82. wait()
  83. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(v.HumanoidRootPart.Position + Vector3.new(0,5,0),v.HumanoidRootPart.Position)
  84. until v.Humanoid.Health <= 0 or Enabled == false
  85. end
  86. end
  87. end)
  88. end
  89. end)
  90. ss:Toggle("KillAura",false,function(t)
  91. kaura =t
  92. while kaura do wait()
  93. pcall(function()
  94. game:GetService("ReplicatedStorage").Remotes.Geral:FireServer("Skill",game:GetService("ReplicatedStorage").Modules.FightStyles.Combat,"Fire","LLLL")
  95. end)
  96. end
  97. end)
  98.  
  99. Stats = {"Defense","Fruit","Gun","Strenght","Blade"}
  100. sss:Dropdown("Stats To Farm",Stats,function(t)
  101. stt = t
  102. end)
  103.  
  104. sss:Toggle("Farm Stat",false,function(t)
  105. farmst = t
  106. while farmst do wait()
  107. pcall(function()
  108.  
  109. game:GetService("ReplicatedStorage").Remotes.Geral:FireServer("AddPoints",stt,1)
  110. end)
  111. end
  112.  
  113. end)
  114.  
  115. sss:Button("HideName",function(t)
  116. hide =t
  117. while hide do wait()
  118. pcall(function()
  119. game.Players.LocalPlayer.Character.Head.Overhead:Destroy()
  120. end)
  121. end
  122.  
  123. end)
  124.  
  125. sss:Button("COPY DISCORD LINK",function(t)
  126. setclipboard("https://discord.gg/wynPh2mvs3")
  127. end)
  128.  
  129.  
  130. sss:Button("SCRIPT MADE BY VEP")
  131. sss:Button("UI MADE BY ASTRAL")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement