Advertisement
kill21_2

kill all

May 13th, 2025
2,048
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.62 KB | None | 0 0
  1. -- LocalScript (например, в StarterPlayerScripts)
  2. local Players = game:GetService("Players")
  3. local player = Players.LocalPlayer
  4. local playerGui = player:WaitForChild("PlayerGui")
  5.  
  6. -- Цветовая схема
  7. local colors = {
  8. background = Color3.fromRGB(30, 30, 40),
  9. header = Color3.fromRGB(25, 25, 35),
  10. button1 = Color3.fromRGB(0, 120, 215),
  11. button2 = Color3.fromRGB(215, 0, 120),
  12. button3 = Color3.fromRGB(215, 50, 0),
  13. close = Color3.fromRGB(255, 60, 60),
  14. text = Color3.fromRGB(240, 240, 240),
  15. statusSuccess = Color3.fromRGB(100, 255, 100),
  16. statusWarning = Color3.fromRGB(255, 255, 100),
  17. statusError = Color3.fromRGB(255, 100, 100)
  18. }
  19.  
  20. -- Создаем GUI с возможностью перемещения
  21. local screenGui = Instance.new("ScreenGui")
  22. screenGui.Name = "RemoteTools"
  23. screenGui.ResetOnSpawn = false
  24. screenGui.Parent = playerGui
  25.  
  26. local mainFrame = Instance.new("Frame")
  27. mainFrame.Size = UDim2.new(0, 320, 0, 280)
  28. mainFrame.Position = UDim2.new(0.5, -160, 0.5, -140)
  29. mainFrame.AnchorPoint = Vector2.new(0.5, 0.5)
  30. mainFrame.BackgroundColor3 = colors.background
  31. mainFrame.BorderSizePixel = 0
  32. mainFrame.ClipsDescendants = true
  33. mainFrame.Parent = screenGui
  34.  
  35. -- Закругленные углы
  36. local corner = Instance.new("UICorner")
  37. corner.CornerRadius = UDim.new(0, 8)
  38. corner.Parent = mainFrame
  39.  
  40. -- Заголовок с кнопкой закрытия
  41. local header = Instance.new("Frame")
  42. header.Size = UDim2.new(1, 0, 0, 30)
  43. header.BackgroundColor3 = colors.header
  44. header.BorderSizePixel = 0
  45. header.Parent = mainFrame
  46.  
  47. local headerCorner = Instance.new("UICorner")
  48. headerCorner.CornerRadius = UDim.new(0, 8)
  49. headerCorner.Parent = header
  50.  
  51. local title = Instance.new("TextLabel")
  52. title.Text = "REMOTE TOOLS"
  53. title.Size = UDim2.new(1, -40, 1, 0)
  54. title.Position = UDim2.new(0, 10, 0, 0)
  55. title.BackgroundTransparency = 1
  56. title.TextColor3 = colors.text
  57. title.Font = Enum.Font.GothamBold
  58. title.TextSize = 14
  59. title.TextXAlignment = Enum.TextXAlignment.Left
  60. title.Parent = header
  61.  
  62. local closeButton = Instance.new("TextButton")
  63. closeButton.Text = "×"
  64. closeButton.Size = UDim2.new(0, 30, 0, 30)
  65. closeButton.Position = UDim2.new(1, -30, 0, 0)
  66. closeButton.BackgroundColor3 = colors.close
  67. closeButton.TextColor3 = colors.text
  68. closeButton.Font = Enum.Font.GothamBold
  69. closeButton.TextSize = 18
  70. closeButton.Parent = header
  71.  
  72. local closeCorner = Instance.new("UICorner")
  73. closeCorner.CornerRadius = UDim.new(0, 8)
  74. closeCorner.Parent = closeButton
  75.  
  76. -- Функционал перемещения
  77. local dragging
  78. local dragInput
  79. local dragStart
  80. local startPos
  81.  
  82. local function update(input)
  83. local delta = input.Position - dragStart
  84. mainFrame.Position = UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y)
  85. end
  86.  
  87. header.InputBegan:Connect(function(input)
  88. if input.UserInputType == Enum.UserInputType.MouseButton1 then
  89. dragging = true
  90. dragStart = input.Position
  91. startPos = mainFrame.Position
  92.  
  93. input.Changed:Connect(function()
  94. if input.UserInputState == Enum.UserInputState.End then
  95. dragging = false
  96. end
  97. end)
  98. end
  99. end)
  100.  
  101. header.InputChanged:Connect(function(input)
  102. if input.UserInputType == Enum.UserInputType.MouseMovement then
  103. dragInput = input
  104. end
  105. end)
  106.  
  107. game:GetService("UserInputService").InputChanged:Connect(function(input)
  108. if input == dragInput and dragging then
  109. update(input)
  110. end
  111. end)
  112.  
  113. -- Закрытие GUI
  114. closeButton.MouseButton1Click:Connect(function()
  115. screenGui:Destroy()
  116. end)
  117.  
  118. -- Основное содержимое
  119. local content = Instance.new("Frame")
  120. content.Size = UDim2.new(1, -20, 1, -50)
  121. content.Position = UDim2.new(0, 10, 0, 40)
  122. content.BackgroundTransparency = 1
  123. content.Parent = mainFrame
  124.  
  125. -- Поле ввода
  126. local inputLabel = Instance.new("TextLabel")
  127. inputLabel.Text = "Remote Name:"
  128. inputLabel.Size = UDim2.new(1, 0, 0, 20)
  129. inputLabel.BackgroundTransparency = 1
  130. inputLabel.TextColor3 = colors.text
  131. inputLabel.Font = Enum.Font.Gotham
  132. inputLabel.TextSize = 12
  133. inputLabel.TextXAlignment = Enum.TextXAlignment.Left
  134. inputLabel.Parent = content
  135.  
  136. local textBox = Instance.new("TextBox")
  137. textBox.Size = UDim2.new(1, 0, 0, 35)
  138. textBox.Position = UDim2.new(0, 0, 0, 20)
  139. textBox.BackgroundColor3 = Color3.fromRGB(50, 50, 60)
  140. textBox.TextColor3 = colors.text
  141. textBox.PlaceholderText = "Enter remote name..."
  142. textBox.Font = Enum.Font.Gotham
  143. textBox.TextSize = 12
  144. textBox.Parent = content
  145.  
  146. local textBoxCorner = Instance.new("UICorner")
  147. textBoxCorner.CornerRadius = UDim.new(0, 4)
  148. textBoxCorner.Parent = textBox
  149.  
  150. -- Кнопки
  151. local buttonContainer = Instance.new("Frame")
  152. buttonContainer.Size = UDim2.new(1, 0, 0, 120)
  153. buttonContainer.Position = UDim2.new(0, 0, 0, 70)
  154. buttonContainer.BackgroundTransparency = 1
  155. buttonContainer.Parent = content
  156.  
  157. local function createButton(name, color, positionY)
  158. local button = Instance.new("TextButton")
  159. button.Text = name
  160. button.Size = UDim2.new(1, 0, 0, 35)
  161. button.Position = UDim2.new(0, 0, 0, positionY)
  162. button.BackgroundColor3 = color
  163. button.TextColor3 = colors.text
  164. button.Font = Enum.Font.GothamBold
  165. button.TextSize = 12
  166. button.Parent = buttonContainer
  167.  
  168. local buttonCorner = Instance.new("UICorner")
  169. buttonCorner.CornerRadius = UDim.new(0, 4)
  170. buttonCorner.Parent = button
  171.  
  172. return button
  173. end
  174.  
  175. local renameButton = createButton("RENAME TO 'wth'", colors.button1, 0)
  176. local spyButton = createButton("LOAD SIMPLESPY", colors.button2, 45)
  177. local killAllButton = createButton("KILL ALL", colors.button3, 90)
  178.  
  179. -- Статус
  180. local statusLabel = Instance.new("TextLabel")
  181. statusLabel.Text = ""
  182. statusLabel.Size = UDim2.new(1, 0, 0, 20)
  183. statusLabel.Position = UDim2.new(0, 0, 0, 200)
  184. statusLabel.BackgroundTransparency = 1
  185. statusLabel.TextColor3 = colors.statusError
  186. statusLabel.Font = Enum.Font.Gotham
  187. statusLabel.TextSize = 12
  188. statusLabel.TextXAlignment = Enum.TextXAlignment.Left
  189. statusLabel.Parent = content
  190.  
  191. -- Функция для переименования
  192. renameButton.MouseButton1Click:Connect(function()
  193. local remoteName = textBox.Text
  194. if remoteName == "" then
  195. statusLabel.Text = "Please enter a name"
  196. return
  197. end
  198.  
  199. local remoteStorage = game:GetService("ReplicatedStorage"):FindFirstChild("devv")
  200. if not remoteStorage then
  201. statusLabel.Text = "Folder 'devv' not found"
  202. return
  203. end
  204.  
  205. remoteStorage = remoteStorage:FindFirstChild("remoteStorage")
  206. if not remoteStorage then
  207. statusLabel.Text = "Folder 'remoteStorage' not found"
  208. return
  209. end
  210.  
  211. local targetRemote = remoteStorage:FindFirstChild(remoteName)
  212. if not targetRemote then
  213. statusLabel.Text = "Remote '" .. remoteName .. "' not found"
  214. return
  215. end
  216.  
  217. if targetRemote:IsA("RemoteEvent") or targetRemote:IsA("RemoteFunction") then
  218. targetRemote.Name = "wth"
  219. statusLabel.TextColor3 = colors.statusSuccess
  220. statusLabel.Text = "Successfully renamed to 'wth'"
  221. else
  222. statusLabel.Text = "Found object is not a RemoteEvent/Function"
  223. end
  224. end)
  225.  
  226. -- Функция для загрузки SimpleSpy
  227. spyButton.MouseButton1Click:Connect(function()
  228. statusLabel.Text = "Loading SimpleSpy..."
  229. statusLabel.TextColor3 = colors.statusWarning
  230.  
  231. local success, err = pcall(function()
  232. local loadstringFunc = loadstring or load
  233. local spyScript = loadstringFunc(game:HttpGetAsync("https://raw.githubusercontent.com/78n/SimpleSpy/main/SimpleSpyBeta.lua"))()
  234. if spyScript then
  235. statusLabel.TextColor3 = colors.statusSuccess
  236. statusLabel.Text = "SimpleSpy loaded successfully!"
  237. end
  238. end)
  239.  
  240. if not success then
  241. statusLabel.Text = "Failed to load SimpleSpy: " .. tostring(err)
  242. end
  243. end)
  244.  
  245. -- Функция для Kill All
  246. killAllButton.MouseButton1Click:Connect(function()
  247. statusLabel.Text = "Executing Kill All..."
  248. statusLabel.TextColor3 = colors.statusWarning
  249.  
  250. local success, err = pcall(function()
  251. local loadstringFunc = loadstring or load
  252. local killScript = loadstringFunc(game:HttpGet("https://pastebin.com/raw/L140rDAV"))()
  253. if killScript then
  254. statusLabel.TextColor3 = colors.statusSuccess
  255. statusLabel.Text = "Kill All executed!"
  256. end
  257. end)
  258.  
  259. if not success then
  260. statusLabel.Text = "Failed to execute Kill All: " .. tostring(err)
  261. end
  262. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement