8599

Untitled

Jan 14th, 2025 (edited)
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 11.70 KB | None | 0 0
  1. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/Robojini/Tuturial_UI_Library/main/UI_Template_1"))()
  2. local Window = Library.CreateLib("8360 script", "RJTheme1")
  3. local Tab = Window:NewTab("main")
  4. -- Ragdoll Section
  5. local Section1 = Tab:NewSection("mods")
  6. Section1:NewButton("Сбор монет", "собирает монеты", function()
  7.     for _, v in pairs(game:GetDescendants()) do
  8.         if v.Name == "CoinMesh" and v:IsA("BasePart") then
  9.             v.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  10.             wait(0.1)
  11.         end
  12.     end
  13. end)
  14. Section1:NewButton("Anti Ragdoll", "выключает ragdoll", function()
  15. game:GetService("ReplicatedStorage").LocalRagdollEvent:Destroy()
  16. local player = game.Players.LocalPlayer
  17.  
  18. local function killCharacter()
  19.     local character = player.Character or player.CharacterAdded:Wait()
  20.     local humanoid = character:FindFirstChild("Humanoid")
  21.     if humanoid then
  22.         humanoid.Health = 0
  23.         print("Персонаж убит.")
  24.     else
  25.         print("Humanoid не найден.")
  26.     end
  27. end
  28.  
  29. -- Если персонаж уже загружен, убить его сразу
  30. if player.Character then
  31.     killCharacter()
  32. end
  33. end)
  34.  
  35.  
  36. -- Delete Portals Section
  37. Section1:NewButton("Delete all portals", "Удаляет все порталы", function()
  38.     local portals = {
  39.         workspace.Portals:FindFirstChild("PyaterochkaPortal"),
  40.         workspace.Portals:FindFirstChild("Samokat_RussiaChat"),
  41.         workspace.Portals:FindFirstChild("Dixy_RussiaChat"),
  42.         workspace.Portals:FindFirstChild("Portal")
  43.     }
  44.  
  45.     for _, portal in pairs(portals) do
  46.         if portal and portal:FindFirstChild("Teleport") then
  47.             portal.Teleport:Destroy()
  48.             print("Удалён Teleport в портале:", portal.Name)
  49.         else
  50.             warn("Teleport не найден в портале или портал отсутствует:", portal and portal.Name or "Unknown")
  51.         end
  52.     end
  53. end)
  54.  
  55. Section1:NewButton("particle fling", "particle fling", function()
  56. local Players = game:GetService("Players")
  57. local RunService = game:GetService("RunService")
  58. local UserInputService = game:GetService("UserInputService")
  59. local LocalPlayer = Players.LocalPlayer
  60. local Workspace = game:GetService("Workspace")
  61.  
  62. local angle = 1
  63. local radius = 10
  64. local blackHoleActive = false
  65. local cursorAttractionActive = false
  66. local cursorPosition = Vector3.new()
  67.  
  68. local function getCursorPosition()
  69.     local mouseLocation = UserInputService:GetMouseLocation()
  70.     local camera = Workspace.CurrentCamera
  71.     local ray = camera:ScreenPointToRay(mouseLocation.X, mouseLocation.Y)
  72.     local raycastResult = Workspace:Raycast(ray.Origin, ray.Direction * 1000)
  73.     if raycastResult then
  74.         return raycastResult.Position
  75.     else
  76.         return ray.Origin + ray.Direction * 1000
  77.     end
  78. end
  79.  
  80. local function setupPlayer()
  81.     local character = LocalPlayer.Character or LocalPlayer.CharacterAdded:Wait()
  82.     local humanoidRootPart = character:WaitForChild("HumanoidRootPart")
  83.  
  84.     local Folder = Instance.new("Folder", Workspace)
  85.     local Part = Instance.new("Part", Folder)
  86.     local Attachment1 = Instance.new("Attachment", Part)
  87.     Part.Anchored = true
  88.     Part.CanCollide = false
  89.     Part.Transparency = 1
  90.  
  91.     return humanoidRootPart, Attachment1
  92. end
  93.  
  94. local humanoidRootPart, Attachment1 = setupPlayer()
  95.  
  96. if not getgenv().Network then
  97.     getgenv().Network = {
  98.         BaseParts = {},
  99.         Velocity = Vector3.new(14.46262424, 14.46262424, 14.46262424)
  100.     }
  101.  
  102.     Network.RetainPart = function(part)
  103.         if typeof(part) == "Instance" and part:IsA("BasePart") and part:IsDescendantOf(Workspace) then
  104.             table.insert(Network.BaseParts, part)
  105.             part.CustomPhysicalProperties = PhysicalProperties.new(0, 0, 0, 0, 0)
  106.             part.CanCollide = false
  107.         end
  108.     end
  109.  
  110.     local function EnablePartControl()
  111.         LocalPlayer.ReplicationFocus = Workspace
  112.         RunService.Heartbeat:Connect(function()
  113.             sethiddenproperty(LocalPlayer, "SimulationRadius", math.huge)
  114.             for _, part in pairs(Network.BaseParts) do
  115.                 if part:IsDescendantOf(Workspace) then
  116.                     part.Velocity = Network.Velocity
  117.                 end
  118.             end
  119.         end)
  120.     end
  121.  
  122.     EnablePartControl()
  123. end
  124.  
  125. local function ForcePart(v)
  126.     if v:IsA("Part") and not v.Anchored and not v.Parent:FindFirstChild("Humanoid") and not v.Parent:FindFirstChild("Head") and v.Name ~= "Handle" then
  127.         for _, x in next, v:GetChildren() do
  128.             if x:IsA("BodyAngularVelocity") or x:IsA("BodyForce") or x:IsA("BodyGyro") or x:IsA("BodyPosition") or x:IsA("BodyThrust") or x:IsA("BodyVelocity") or x:IsA("RocketPropulsion") then
  129.                 x:Destroy()
  130.             end
  131.         end
  132.         if v:FindFirstChild("Attachment") then
  133.             v:FindFirstChild("Attachment"):Destroy()
  134.         end
  135.         if v:FindFirstChild("AlignPosition") then
  136.             v:FindFirstChild("AlignPosition"):Destroy()
  137.         end
  138.         if v:FindFirstChild("Torque") then
  139.             v:FindFirstChild("Torque"):Destroy()
  140.         end
  141.         v.CanCollide = false
  142.  
  143.         local Torque = Instance.new("Torque", v)
  144.         Torque.Torque = Vector3.new(1000000, 1000000, 1000000)
  145.         local AlignPosition = Instance.new("AlignPosition", v)
  146.         local Attachment2 = Instance.new("Attachment", v)
  147.         Torque.Attachment0 = Attachment2
  148.         AlignPosition.MaxForce = math.huge
  149.         AlignPosition.MaxVelocity = math.huge
  150.         AlignPosition.Responsiveness = 500
  151.         AlignPosition.Attachment0 = Attachment2
  152.         AlignPosition.Attachment1 = Attachment1
  153.     end
  154. end
  155.  
  156. local function toggleBlackHole()
  157.     blackHoleActive = not blackHoleActive
  158.     if blackHoleActive then
  159.         for _, v in next, Workspace:GetDescendants() do
  160.             ForcePart(v)
  161.         end
  162.  
  163.         Workspace.DescendantAdded:Connect(function(v)
  164.             if blackHoleActive then
  165.                 ForcePart(v)
  166.             end
  167.         end)
  168.  
  169.         spawn(function()
  170.             while blackHoleActive and RunService.RenderStepped:Wait() do
  171.                 if cursorAttractionActive then
  172.                     cursorPosition = getCursorPosition()
  173.                     Attachment1.WorldCFrame = CFrame.new(cursorPosition)
  174.                 else
  175.                     angle = angle + math.rad(2)
  176.                     local offsetX = math.cos(angle) * radius
  177.                     local offsetZ = math.sin(angle) * radius
  178.                     Attachment1.WorldCFrame = humanoidRootPart.CFrame * CFrame.new(offsetX, 0, offsetZ)
  179.                 end
  180.             end
  181.         end)
  182.     else
  183.         Attachment1.WorldCFrame = CFrame.new(0, -1000, 0)
  184.     end
  185. end
  186.  
  187. LocalPlayer.CharacterAdded:Connect(function()
  188.     humanoidRootPart, Attachment1 = setupPlayer()
  189.     if blackHoleActive then
  190.         toggleBlackHole()
  191.     end
  192. end)
  193.  
  194. local library = loadstring(game:HttpGet("https://raw.githubusercontent.com/miroeramaa/TurtleLib/main/TurtleUiLib.lua"))()
  195. local window = library:Window("8360")
  196.  
  197. window:Slider("Radius Blackhole",1,100,10, function(Value)
  198.    radius = Value
  199. end)
  200.  
  201. window:Toggle("Blackhole", true, function(Value)
  202.        if Value then
  203.             toggleBlackHole()
  204.         else
  205.             blackHoleActive = false
  206.         end
  207. end)
  208.  
  209. window:Toggle("Cursor Attraction", false, function(Value)
  210.     cursorAttractionActive = Value
  211. end)
  212.  
  213. spawn(function()
  214.     while true do
  215.         RunService.RenderStepped:Wait()
  216.     end
  217. end)
  218.  
  219. toggleBlackHole()
  220. end)
  221.  
  222.  
  223. Section1:NewButton("spy", "spy", function()
  224. enabled = true
  225. --if true will xhexk your messages too
  226. spyOnMyself = true
  227. --if true will xhat the logs publikly (fun, risky)
  228. public = false
  229. --if true will use /me to stand out
  230. publicItalics = false
  231. --KUSTOMIZE private logs
  232. privateProperties = {
  233. Color = Color3.fromRGB(0,255,255);
  234. Font = Enum.Font.SourceSansBold;
  235. TextSize = 18;
  236. }
  237. --////////////////////////////////////////////////////////////////
  238. local StarterGui = game:GetService("StarterGui")
  239. local Players = game:GetService("Players")
  240. local player = Players.LocalPlayer or Players:GetPropertyChangedSignal("LocalPlayer"):Wait() or Players.LocalPlayer
  241. local saymsg = game:GetService("ReplicatedStorage"):WaitForChild("DefaultChatSystemChatEvents"):WaitForChild("SayMessageRequest")
  242. local getmsg = game:GetService("ReplicatedStorage"):WaitForChild("DefaultChatSystemChatEvents"):WaitForChild("OnMessageDoneFiltering")
  243. local instance = (_G.chatSpyInstance or 0) + 1
  244. _G.chatSpyInstance = instance
  245.  
  246. local function onChatted(p,msg)
  247. if _G.chatSpyInstance == instance then
  248. if p==player and msg:lower():sub(1,6)==".lu" then
  249. enabled = not enabled
  250. wait(0.3)
  251. privateProperties.Text = "{LOLLYPOP SPY "..(enabled and "EN" or "DIS").."ABLED}"
  252. StarterGui:SetCore("ChatMakeSystemMessage",privateProperties)
  253. elseif enabled and (spyOnMyself==true or p~=player) then
  254. msg = msg:gsub("[\n\r]",''):gsub("\t",' '):gsub("[ ]+",' ')
  255. local hidden = true
  256. local conn = getmsg.OnClientEvent:Connect(function(packet,channel)
  257. 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
  258. hidden = false
  259. end
  260. end)
  261. wait(1)
  262. conn:Disconnect()
  263. if hidden and enabled then
  264. if public then
  265. saymsg:FireServer((publicItalics and "/me " or '').."{SPY} [".. p.Name .."]: "..msg,"All")
  266. else
  267. privateProperties.Text = "{SPY} [".. p.Name .."]: "..msg
  268. StarterGui:SetCore("ChatMakeSystemMessage",privateProperties)
  269. end
  270. end
  271. end
  272. end
  273. end
  274.  
  275. for _,p in ipairs(Players:GetPlayers()) do
  276. p.Chatted:Connect(function(msg) onChatted(p,msg) end)
  277. end
  278. Players.PlayerAdded:Connect(function(p)
  279. p.Chatted:Connect(function(msg) onChatted(p,msg) end)
  280. end)
  281. privateProperties.Text = "{LOLLYPOP SPY "..(enabled and "EN" or "DIS").."ABLED}"
  282. player:WaitForChild("PlayerGui"):WaitForChild("Chat")
  283. StarterGui:SetCore("ChatMakeSystemMessage",privateProperties)
  284. wait(3)
  285. local chatFrame = player.PlayerGui.Chat.Frame
  286. chatFrame.ChatChannelParentFrame.Visible = true
  287. chatFrame.ChatBarParentFrame.Position = chatFrame.ChatChannelParentFrame.Position+UDim2.new(UDim.new(),chatFrame.ChatChannelParentFrame.Size.Y)
  288. end)
  289.  
  290.  
  291. local Tab = Window:NewTab("misc")
  292. local Section1 = Tab:NewSection("jerk")
  293. Section1:NewButton("jerking", "jerk", function()
  294. loadstring(game:HttpGet("https://pastefy.app/YZoglOyJ/raw"))()
  295. end)
  296. local Section1 = Tab:NewSection("infinite yield")
  297. Section1:NewButton("infinite yield", "infinite yield", function()
  298. loadstring(game:HttpGet("https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source"))()
  299. end)
  300. local Section1 = Tab:NewSection("orca hub")
  301. Section1:NewButton("orca hub", "orca hub", function()
  302. loadstring(game:HttpGetAsync('https://raw.githubusercontent.com/richie0866/orca/master/public/latest.lua'))()
  303. end)
  304. local Section1 = Tab:NewSection("emotes")
  305. Section1:NewButton("emotes", "emotes", function()
  306. loadstring(game:HttpGetAsync("https://raw.githubusercontent.com/Gi7331/scripts/main/Emote.lua"))()
  307. end)
  308. local Section1 = Tab:NewSection("canon")
  309. Section1:NewButton("canon", "canon", function()
  310. loadstring(game:HttpGet('https://raw.githubusercontent.com/GhostPlayer352/Test4/main/Cannon%20Ball'))()
  311. end)
  312. local Section1 = Tab:NewSection("eazvy hub")
  313. Section1:NewButton("eazvy hub", "eazvy hub", function()
  314. loadstring(game:HttpGet("https://raw.githubusercontent.com/Eazvy/public-scripts/main/Universal_Animations_Emotes.lua"))()
  315. end)
  316. local Section1 = Tab:NewSection("system broken")
  317. Section1:NewButton("system broken", "system broken", function()
  318. loadstring(game:HttpGet("https://raw.githubusercontent.com/H20CalibreYT/SystemBroken/main/script"))()
  319. end)
Add Comment
Please, Sign In to add comment