Advertisement
8599

Untitled

Feb 11th, 2025 (edited)
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 8.41 KB | None | 0 0
  1. local Fluent = loadstring(game:HttpGet("https://github.com/dawid-scripts/Fluent/releases/latest/download/main.lua"))()
  2. local SaveManager = loadstring(game:HttpGet("https://raw.githubusercontent.com/dawid-scripts/Fluent/master/Addons/SaveManager.lua"))()
  3. local InterfaceManager = loadstring(game:HttpGet("https://raw.githubusercontent.com/dawid-scripts/Fluent/master/Addons/InterfaceManager.lua"))()
  4.  
  5. local Window = Fluent:CreateWindow({
  6.     Title = "Fluent ",
  7.     SubTitle = "by 8360",
  8.     TabWidth = 160,
  9.     Size = UDim2.fromOffset(580, 460),
  10.     Acrylic = true, -- The blur may be detectable, setting this to false disables blur entirely
  11.     Theme = "Dark",
  12.     MinimizeKey = Enum.KeyCode.LeftControl -- Used when theres no MinimizeKeybind
  13. })
  14.  
  15. --Fluent provides Lucide Icons https://lucide.dev/icons/ for the tabs, icons are optional
  16. local Tabs = {
  17.     Main = Window:AddTab({ Title = "Main", Icon = "" }),
  18.     Misc = Window:AddTab({ Title = "Misc", Icon = "" }),
  19.     Settings = Window:AddTab({ Title = "Settings", Icon = "settings" })
  20. }
  21.  
  22. local Options = Fluent.Options
  23.  
  24. do
  25.     Fluent:Notify({
  26.         Title = "Notification",
  27.         Content = "This is a notification",
  28.         SubContent = "SubContent", -- Optional
  29.         Duration = 5 -- Set to nil to make the notification not disappear
  30.     })
  31.  
  32.  
  33.  
  34.     Tabs.Main:AddParagraph({
  35.         Title = "Main scripts",
  36.         Content = "Тут находятся основные скрипты."
  37.     })
  38.  
  39.  
  40.  
  41.     Tabs.Main:AddButton({
  42.         Title = "AntiRagdoll",
  43.         Description = "Выключает ragdoll.",
  44.         Callback = function()
  45. game:GetService("ReplicatedStorage").LocalRagdollEvent:Destroy()
  46. local player = game.Players.LocalPlayer
  47.  
  48. local function killCharacter()
  49.     local character = player.Character or player.CharacterAdded:Wait()
  50.     local humanoid = character:FindFirstChild("Humanoid")
  51.     if humanoid then
  52.         humanoid.Health = 0
  53.         print("Персонаж убит.")
  54.     else
  55.         print("Humanoid не найден.")
  56.     end
  57. end
  58.  
  59. -- Если персонаж уже загружен, убить его сразу
  60. if player.Character then
  61.     killCharacter()
  62. end
  63. end
  64.     })
  65.  
  66. Tabs.Main:AddButton({
  67.         Title = "Сбор монет",
  68.         Description = "Собирает китайские монеты.",
  69.         Callback = function()
  70.         for _, v in pairs(game:GetDescendants()) do
  71.         if v.Name == "CoinMesh" and v:IsA("BasePart") then
  72.             v.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  73.             wait(0.1)
  74.         end
  75.         end
  76.         end})
  77. end
  78.  
  79.  
  80.  
  81. Tabs.Main:AddButton({
  82.         Title = "Chat spying",
  83.         Description = "Включает spying чата.",
  84.         Callback = function()
  85. enabled = true
  86. --if true will xhexk your messages too
  87. spyOnMyself = true
  88. --if true will xhat the logs publikly (fun, risky)
  89. public = false
  90. --if true will use /me to stand out
  91. publicItalics = false
  92. --KUSTOMIZE private logs
  93. privateProperties = {
  94. Color = Color3.fromRGB(0,255,255);
  95. Font = Enum.Font.SourceSansBold;
  96. TextSize = 18;
  97. }
  98. --////////////////////////////////////////////////////////////////
  99. local StarterGui = game:GetService("StarterGui")
  100. local Players = game:GetService("Players")
  101. local player = Players.LocalPlayer or Players:GetPropertyChangedSignal("LocalPlayer"):Wait() or Players.LocalPlayer
  102. local saymsg = game:GetService("ReplicatedStorage"):WaitForChild("DefaultChatSystemChatEvents"):WaitForChild("SayMessageRequest")
  103. local getmsg = game:GetService("ReplicatedStorage"):WaitForChild("DefaultChatSystemChatEvents"):WaitForChild("OnMessageDoneFiltering")
  104. local instance = (_G.chatSpyInstance or 0) + 1
  105. _G.chatSpyInstance = instance
  106.  
  107. local function onChatted(p,msg)
  108. if _G.chatSpyInstance == instance then
  109. if p==player and msg:lower():sub(1,6)==".lu" then
  110. enabled = not enabled
  111. wait(0.3)
  112. privateProperties.Text = "{LOLLYPOP SPY "..(enabled and "EN" or "DIS").."ABLED}"
  113. StarterGui:SetCore("ChatMakeSystemMessage",privateProperties)
  114. elseif enabled and (spyOnMyself==true or p~=player) then
  115. msg = msg:gsub("[\n\r]",''):gsub("\t",' '):gsub("[ ]+",' ')
  116. local hidden = true
  117. local conn = getmsg.OnClientEvent:Connect(function(packet,channel)
  118. if packet.SpeakerUserId==p.UserId and packet.Message==msg:sub(#msg-#packet.Message+1) and (channel=="All" or (channel=="Team" and public==false and p.Team==player.Team)) then
  119. hidden = false
  120. end
  121. end)
  122. wait(1)
  123. conn:Disconnect()
  124. if hidden and enabled then
  125. if public then
  126. saymsg:FireServer((publicItalics and "/me " or '').."{SPY} [".. p.Name .."]: "..msg,"All")
  127. else
  128. privateProperties.Text = "{SPY} [".. p.Name .."]: "..msg
  129. StarterGui:SetCore("ChatMakeSystemMessage",privateProperties)
  130. end
  131. end
  132. end
  133. end
  134. end
  135.  
  136. for _,p in ipairs(Players:GetPlayers()) do
  137. p.Chatted:Connect(function(msg) onChatted(p,msg) end)
  138. end
  139. Players.PlayerAdded:Connect(function(p)
  140. p.Chatted:Connect(function(msg) onChatted(p,msg) end)
  141. end)
  142. privateProperties.Text = "{LOLLYPOP SPY "..(enabled and "EN" or "DIS").."ABLED}"
  143. player:WaitForChild("PlayerGui"):WaitForChild("Chat")
  144. StarterGui:SetCore("ChatMakeSystemMessage",privateProperties)
  145. wait(3)
  146. local chatFrame = player.PlayerGui.Chat.Frame
  147. chatFrame.ChatChannelParentFrame.Visible = true
  148. chatFrame.ChatBarParentFrame.Position = chatFrame.ChatChannelParentFrame.Position+UDim2.new(UDim.new(),chatFrame.ChatChannelParentFrame.Size.Y)
  149. end})
  150.  
  151.  
  152. Tabs.Misc:AddParagraph({
  153.         Title = "Misc scripts",
  154.         Content = "Тут находятся дополнительные скрипты."
  155.     })
  156.  
  157.  
  158. Tabs.Misc:AddButton({
  159.         Title = "Jerk off",
  160.         Description = "",
  161.         Callback = function()
  162. loadstring(game:HttpGet("https://pastefy.app/YZoglOyJ/raw"))()
  163. end})
  164.  
  165. Tabs.Main:AddButton({
  166.         Title = "Infinite Yield",
  167.         Description = "Включает Infinite Yield",
  168.         Callback = function()
  169. loadstring(game:HttpGet("https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source"))()
  170. end})
  171.  
  172. Tabs.Misc:AddButton({
  173.         Title = "Orca hub",
  174.         Description = "",
  175.         Callback = function()
  176. loadstring(game:HttpGetAsync('https://raw.githubusercontent.com/richie0866/orca/master/public/latest.lua'))()
  177. end})
  178.  
  179. Tabs.Misc:AddButton({
  180.         Title = "Emotes",
  181.         Description = "",
  182.         Callback = function()
  183. loadstring(game:HttpGetAsync("https://raw.githubusercontent.com/Gi7331/scripts/main/Emote.lua"))()
  184. end})
  185.  
  186. Tabs.Misc:AddButton({
  187.         Title = "Canon",
  188.         Description = "",
  189.         Callback = function()
  190. loadstring(game:HttpGet('https://raw.githubusercontent.com/GhostPlayer352/Test4/main/Cannon%20Ball'))()
  191. end})
  192.  
  193. Tabs.Misc:AddButton({
  194.         Title = "Eazvy hub",
  195.         Description = "",
  196.         Callback = function()
  197. loadstring(game:HttpGet("https://raw.githubusercontent.com/Eazvy/public-scripts/main/Universal_Animations_Emotes.lua"))()
  198. end})
  199.  
  200. Tabs.Misc:AddButton({
  201.         Title = "System Broken",
  202.         Description = "",
  203.         Callback = function()
  204. loadstring(game:HttpGet("https://raw.githubusercontent.com/H20CalibreYT/SystemBroken/main/script"))()
  205. end})
  206.  
  207. Tabs.Misc:AddButton({
  208.         Title = "Nitrogen",
  209.         Description = "Password - nitrogencomingback",
  210.         Callback = function()
  211. loadstring(game:HttpGet(('https://raw.githubusercontent.com/nitrogenhbexp/beta-script/refs/heads/main/script'),true))()
  212. end})
  213.  
  214.  
  215.  
  216. -- Addons:
  217. -- SaveManager (Allows you to have a configuration system)
  218. -- InterfaceManager (Allows you to have a interface managment system)
  219.  
  220. -- Hand the library over to our managers
  221. SaveManager:SetLibrary(Fluent)
  222. InterfaceManager:SetLibrary(Fluent)
  223.  
  224. -- Ignore keys that are used by ThemeManager.
  225. -- (we dont want configs to save themes, do we?)
  226. SaveManager:IgnoreThemeSettings()
  227.  
  228. -- You can add indexes of elements the save manager should ignore
  229. SaveManager:SetIgnoreIndexes({})
  230.  
  231. -- use case for doing it this way:
  232. -- a script hub could have themes in a global folder
  233. -- and game configs in a separate folder per game
  234. InterfaceManager:SetFolder("FluentScriptHub")
  235. SaveManager:SetFolder("FluentScriptHub/specific-game")
  236.  
  237. InterfaceManager:BuildInterfaceSection(Tabs.Settings)
  238. SaveManager:BuildConfigSection(Tabs.Settings)
  239.  
  240.  
  241. Window:SelectTab(1)
  242.  
  243. Fluent:Notify({
  244.     Title = "Fluent",
  245.     Content = "The script has been loaded.",
  246.     Duration = 8
  247. })
  248.  
  249. -- You can use the SaveManager:LoadAutoloadConfig() to load a config
  250. -- which has been marked to be one that auto loads!
  251. SaveManager:LoadAutoloadConfig()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement