Advertisement
waconline

remote script

Feb 11th, 2020
277
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 215.21 KB | None | 0 0
  1. --https://github.com/Mokiros/roblox-FE-compatibility
  2. if game:GetService("RunService"):IsClient() then error("Script must be server-side in order to work; use h/ and not hl/") end
  3. local Player,game,owner = owner,game
  4. local RealPlayer = Player
  5. do
  6. print("FE Compatibility code V2 by Mokiros")
  7. local RealPlayer = RealPlayer
  8. script.Parent = RealPlayer.Character
  9.  
  10. --Fake event to make stuff like Mouse.KeyDown work
  11. local Disconnect_Function = function(this)
  12. this[1].Functions[this[2]] = nil
  13. end
  14. local Disconnect_Metatable = {__index={disconnect=Disconnect_Function,Disconnect=Disconnect_Function}}
  15. local FakeEvent_Metatable = {__index={
  16. Connect = function(this,f)
  17. local i = tostring(math.random(0,10000))
  18. while this.Functions[i] do
  19. i = tostring(math.random(0,10000))
  20. end
  21. this.Functions[i] = f
  22. return setmetatable({this,i},Disconnect_Metatable)
  23. end
  24. }}
  25. FakeEvent_Metatable.__index.connect = FakeEvent_Metatable.__index.Connect
  26. local function fakeEvent()
  27. return setmetatable({Functions={}},FakeEvent_Metatable)
  28. end
  29.  
  30. --Creating fake input objects with fake variables
  31. local FakeMouse = {Hit=CFrame.new(),KeyUp=fakeEvent(),KeyDown=fakeEvent(),Button1Up=fakeEvent(),Button1Down=fakeEvent(),Button2Up=fakeEvent(),Button2Down=fakeEvent()}
  32. FakeMouse.keyUp = FakeMouse.KeyUp
  33. FakeMouse.keyDown = FakeMouse.KeyDown
  34. local UIS = {InputBegan=fakeEvent(),InputEnded=fakeEvent()}
  35. local CAS = {Actions={},BindAction=function(self,name,fun,touch,...)
  36. CAS.Actions[name] = fun and {Name=name,Function=fun,Keys={...}} or nil
  37. end}
  38. --Merged 2 functions into one by checking amount of arguments
  39. CAS.UnbindAction = CAS.BindAction
  40.  
  41. --This function will trigger the events that have been :Connect()'ed
  42. local function TriggerEvent(self,ev,...)
  43. for _,f in pairs(self[ev].Functions) do
  44. f(...)
  45. end
  46. end
  47. FakeMouse.TriggerEvent = TriggerEvent
  48. UIS.TriggerEvent = TriggerEvent
  49.  
  50. --Client communication
  51. local Event = Instance.new("RemoteEvent")
  52. Event.Name = "UserInput_Event"
  53. Event.OnServerEvent:Connect(function(plr,io)
  54. if plr~=RealPlayer then return end
  55. FakeMouse.Target = io.Target
  56. FakeMouse.Hit = io.Hit
  57. if not io.isMouse then
  58. local b = io.UserInputState == Enum.UserInputState.Begin
  59. if io.UserInputType == Enum.UserInputType.MouseButton1 then
  60. return FakeMouse:TriggerEvent(b and "Button1Down" or "Button1Up")
  61. end
  62. if io.UserInputType == Enum.UserInputType.MouseButton2 then
  63. return FakeMouse:TriggerEvent(b and "Button2Down" or "Button2Up")
  64. end
  65. for _,t in pairs(CAS.Actions) do
  66. for _,k in pairs(t.Keys) do
  67. if k==io.KeyCode then
  68. t.Function(t.Name,io.UserInputState,io)
  69. end
  70. end
  71. end
  72. FakeMouse:TriggerEvent(b and "KeyDown" or "KeyUp",io.KeyCode.Name:lower())
  73. UIS:TriggerEvent(b and "InputBegan" or "InputEnded",io,false)
  74. end
  75. end)
  76. Event.Parent = NLS([==[local Event = script:WaitForChild("UserInput_Event")
  77. local Mouse = owner:GetMouse()
  78. local UIS = game:GetService("UserInputService")
  79. local input = function(io,RobloxHandled)
  80. if RobloxHandled then return end
  81. --Since InputObject is a client-side instance, we create and pass table instead
  82. Event:FireServer({KeyCode=io.KeyCode,UserInputType=io.UserInputType,UserInputState=io.UserInputState,Hit=Mouse.Hit,Target=Mouse.Target})
  83. end
  84. UIS.InputBegan:Connect(input)
  85. UIS.InputEnded:Connect(input)
  86.  
  87. local h,t
  88. --Give the server mouse data every second frame, but only if the values changed
  89. --If player is not moving their mouse, client won't fire events
  90. local HB = game:GetService("RunService").Heartbeat
  91. while true do
  92. if h~=Mouse.Hit or t~=Mouse.Target then
  93. h,t=Mouse.Hit,Mouse.Target
  94. Event:FireServer({isMouse=true,Target=t,Hit=h})
  95. end
  96. --Wait 2 frames
  97. for i=1,2 do
  98. HB:Wait()
  99. end
  100. end]==],script)
  101.  
  102. ----Sandboxed game object that allows the usage of client-side methods and services
  103. --Real game object
  104. local RealGame = game
  105.  
  106. --Metatable for fake service
  107. local FakeService_Metatable = {
  108. __index = function(self,k)
  109. local s = rawget(self,"_RealService")
  110. if s then
  111. return typeof(s[k])=="function"
  112. and function(_,...)return s[k](s,...)end or s[k]
  113. end
  114. end,
  115. __newindex = function(self,k,v)
  116. local s = rawget(self,"_RealService")
  117. if s then s[k]=v end
  118. end
  119. }
  120. local function FakeService(t,RealService)
  121. t._RealService = typeof(RealService)=="string" and RealGame:GetService(RealService) or RealService
  122. return setmetatable(t,FakeService_Metatable)
  123. end
  124.  
  125. --Fake game object
  126. local FakeGame = {
  127. GetService = function(self,s)
  128. return rawget(self,s) or RealGame:GetService(s)
  129. end,
  130. Players = FakeService({
  131. LocalPlayer = FakeService({GetMouse=function(self)return FakeMouse end},Player)
  132. },"Players"),
  133. UserInputService = FakeService(UIS,"UserInputService"),
  134. ContextActionService = FakeService(CAS,"ContextActionService"),
  135. RunService = FakeService({
  136. _btrs = {},
  137. RenderStepped = RealGame:GetService("RunService").Heartbeat,
  138. BindToRenderStep = function(self,name,_,fun)
  139. self._btrs[name] = self.Heartbeat:Connect(fun)
  140. end,
  141. UnbindFromRenderStep = function(self,name)
  142. self._btrs[name]:Disconnect()
  143. end,
  144. },"RunService")
  145. }
  146. rawset(FakeGame.Players,"localPlayer",FakeGame.Players.LocalPlayer)
  147. FakeGame.service = FakeGame.GetService
  148. FakeService(FakeGame,game)
  149. --Changing owner to fake player object to support owner:GetMouse()
  150. game,owner = FakeGame,FakeGame.Players.LocalPlayer
  151. end
  152. --Converted with ttyyuu12345's model to script plugin v4
  153. function sandbox(var,func)
  154. local env = getfenv(func)
  155. local newenv = setmetatable({},{
  156. __index = function(self,k)
  157. if k=="script" then
  158. return var
  159. else
  160. return env[k]
  161. end
  162. end,
  163. })
  164. setfenv(func,newenv)
  165. return func
  166. end
  167. cors = {}
  168. mas = Instance.new("Model",game:GetService("Lighting"))
  169. Tool0 = Instance.new("Tool")
  170. Humanoid1 = Instance.new("Humanoid")
  171. Script2 = Instance.new("Script")
  172. Script3 = Instance.new("Script")
  173. Script4 = Instance.new("Script")
  174. Part5 = Instance.new("Part")
  175. BlockMesh6 = Instance.new("BlockMesh")
  176. Decal7 = Instance.new("Decal")
  177. Script8 = Instance.new("Script")
  178. Weld9 = Instance.new("Weld")
  179. Weld10 = Instance.new("Weld")
  180. Weld11 = Instance.new("Weld")
  181. Weld12 = Instance.new("Weld")
  182. Weld13 = Instance.new("Weld")
  183. Weld14 = Instance.new("Weld")
  184. Weld15 = Instance.new("Weld")
  185. Weld16 = Instance.new("Weld")
  186. Weld17 = Instance.new("Weld")
  187. Weld18 = Instance.new("Weld")
  188. Weld19 = Instance.new("Weld")
  189. Weld20 = Instance.new("Weld")
  190. Weld21 = Instance.new("Weld")
  191. Weld22 = Instance.new("Weld")
  192. Weld23 = Instance.new("Weld")
  193. Weld24 = Instance.new("Weld")
  194. Weld25 = Instance.new("Weld")
  195. Weld26 = Instance.new("Weld")
  196. Weld27 = Instance.new("Weld")
  197. Weld28 = Instance.new("Weld")
  198. Weld29 = Instance.new("Weld")
  199. Weld30 = Instance.new("Weld")
  200. Weld31 = Instance.new("Weld")
  201. Weld32 = Instance.new("Weld")
  202. Weld33 = Instance.new("Weld")
  203. Weld34 = Instance.new("Weld")
  204. Weld35 = Instance.new("Weld")
  205. Weld36 = Instance.new("Weld")
  206. Weld37 = Instance.new("Weld")
  207. Weld38 = Instance.new("Weld")
  208. Weld39 = Instance.new("Weld")
  209. Weld40 = Instance.new("Weld")
  210. Weld41 = Instance.new("Weld")
  211. Weld42 = Instance.new("Weld")
  212. Weld43 = Instance.new("Weld")
  213. Weld44 = Instance.new("Weld")
  214. Weld45 = Instance.new("Weld")
  215. Weld46 = Instance.new("Weld")
  216. Weld47 = Instance.new("Weld")
  217. Weld48 = Instance.new("Weld")
  218. Weld49 = Instance.new("Weld")
  219. Weld50 = Instance.new("Weld")
  220. Weld51 = Instance.new("Weld")
  221. Weld52 = Instance.new("Weld")
  222. Weld53 = Instance.new("Weld")
  223. Weld54 = Instance.new("Weld")
  224. Weld55 = Instance.new("Weld")
  225. Weld56 = Instance.new("Weld")
  226. Weld57 = Instance.new("Weld")
  227. Weld58 = Instance.new("Weld")
  228. Weld59 = Instance.new("Weld")
  229. Weld60 = Instance.new("Weld")
  230. Weld61 = Instance.new("Weld")
  231. Weld62 = Instance.new("Weld")
  232. Weld63 = Instance.new("Weld")
  233. Weld64 = Instance.new("Weld")
  234. Weld65 = Instance.new("Weld")
  235. Part66 = Instance.new("Part")
  236. BlockMesh67 = Instance.new("BlockMesh")
  237. ManualWeld68 = Instance.new("ManualWeld")
  238. Part69 = Instance.new("Part")
  239. BlockMesh70 = Instance.new("BlockMesh")
  240. ManualWeld71 = Instance.new("ManualWeld")
  241. ManualWeld72 = Instance.new("ManualWeld")
  242. Part73 = Instance.new("Part")
  243. BlockMesh74 = Instance.new("BlockMesh")
  244. ManualWeld75 = Instance.new("ManualWeld")
  245. Part76 = Instance.new("Part")
  246. BlockMesh77 = Instance.new("BlockMesh")
  247. ManualWeld78 = Instance.new("ManualWeld")
  248. Script79 = Instance.new("Script")
  249. Script80 = Instance.new("Script")
  250. Script81 = Instance.new("Script")
  251. Script82 = Instance.new("Script")
  252. LocalScript83 = Instance.new("LocalScript")
  253. ScreenGui84 = Instance.new("ScreenGui")
  254. Frame85 = Instance.new("Frame")
  255. TextBox86 = Instance.new("TextBox")
  256. TextLabel87 = Instance.new("TextLabel")
  257. TextLabel88 = Instance.new("TextLabel")
  258. ImageLabel89 = Instance.new("ImageLabel")
  259. Script90 = Instance.new("Script")
  260. TextLabel91 = Instance.new("TextLabel")
  261. TextLabel92 = Instance.new("TextLabel")
  262. TextLabel93 = Instance.new("TextLabel")
  263. TextLabel94 = Instance.new("TextLabel")
  264. Script95 = Instance.new("Script")
  265. Configuration96 = Instance.new("Configuration")
  266. TextLabel97 = Instance.new("TextLabel")
  267. TextButton98 = Instance.new("TextButton")
  268. Script99 = Instance.new("Script")
  269. TextButton100 = Instance.new("TextButton")
  270. Script101 = Instance.new("Script")
  271. TextButton102 = Instance.new("TextButton")
  272. Script103 = Instance.new("Script")
  273. TextButton104 = Instance.new("TextButton")
  274. Script105 = Instance.new("Script")
  275. TextButton106 = Instance.new("TextButton")
  276. Script107 = Instance.new("Script")
  277. TextButton108 = Instance.new("TextButton")
  278. Script109 = Instance.new("Script")
  279. TextButton110 = Instance.new("TextButton")
  280. Script111 = Instance.new("Script")
  281. TextLabel112 = Instance.new("TextLabel")
  282. TextButton113 = Instance.new("TextButton")
  283. Script114 = Instance.new("Script")
  284. TextButton115 = Instance.new("TextButton")
  285. Script116 = Instance.new("Script")
  286. TextButton117 = Instance.new("TextButton")
  287. Script118 = Instance.new("Script")
  288. TextLabel119 = Instance.new("TextLabel")
  289. Script120 = Instance.new("Script")
  290. TextButton121 = Instance.new("TextButton")
  291. Script122 = Instance.new("Script")
  292. TextButton123 = Instance.new("TextButton")
  293. Script124 = Instance.new("Script")
  294. TextButton125 = Instance.new("TextButton")
  295. Script126 = Instance.new("Script")
  296. TextButton127 = Instance.new("TextButton")
  297. Script128 = Instance.new("Script")
  298. TextButton129 = Instance.new("TextButton")
  299. Script130 = Instance.new("Script")
  300. TextButton131 = Instance.new("TextButton")
  301. Script132 = Instance.new("Script")
  302. TextButton133 = Instance.new("TextButton")
  303. Script134 = Instance.new("Script")
  304. TextButton135 = Instance.new("TextButton")
  305. Script136 = Instance.new("Script")
  306. TextButton137 = Instance.new("TextButton")
  307. Script138 = Instance.new("Script")
  308. TextButton139 = Instance.new("TextButton")
  309. Script140 = Instance.new("Script")
  310. TextButton141 = Instance.new("TextButton")
  311. Script142 = Instance.new("Script")
  312. TextLabel143 = Instance.new("TextLabel")
  313. Script144 = Instance.new("Script")
  314. TextButton145 = Instance.new("TextButton")
  315. Script146 = Instance.new("Script")
  316. TextButton147 = Instance.new("TextButton")
  317. Script148 = Instance.new("Script")
  318. TextButton149 = Instance.new("TextButton")
  319. Script150 = Instance.new("Script")
  320. TextButton151 = Instance.new("TextButton")
  321. Script152 = Instance.new("Script")
  322. TextButton153 = Instance.new("TextButton")
  323. Script154 = Instance.new("Script")
  324. TextButton155 = Instance.new("TextButton")
  325. Script156 = Instance.new("Script")
  326. TextButton157 = Instance.new("TextButton")
  327. Script158 = Instance.new("Script")
  328. TextButton159 = Instance.new("TextButton")
  329. Script160 = Instance.new("Script")
  330. Color3Value161 = Instance.new("Color3Value")
  331. Color3Value162 = Instance.new("Color3Value")
  332. Color3Value163 = Instance.new("Color3Value")
  333. TextButton164 = Instance.new("TextButton")
  334. Script165 = Instance.new("Script")
  335. TextButton166 = Instance.new("TextButton")
  336. Script167 = Instance.new("Script")
  337. TextButton168 = Instance.new("TextButton")
  338. Script169 = Instance.new("Script")
  339. TextButton170 = Instance.new("TextButton")
  340. Script171 = Instance.new("Script")
  341. TextButton172 = Instance.new("TextButton")
  342. Script173 = Instance.new("Script")
  343. TextButton174 = Instance.new("TextButton")
  344. Script175 = Instance.new("Script")
  345. TextButton176 = Instance.new("TextButton")
  346. Script177 = Instance.new("Script")
  347. TextButton178 = Instance.new("TextButton")
  348. Script179 = Instance.new("Script")
  349. TextButton180 = Instance.new("TextButton")
  350. Script181 = Instance.new("Script")
  351. TextButton182 = Instance.new("TextButton")
  352. Script183 = Instance.new("Script")
  353. TextButton184 = Instance.new("TextButton")
  354. Script185 = Instance.new("Script")
  355. TextButton186 = Instance.new("TextButton")
  356. Script187 = Instance.new("Script")
  357. TextButton188 = Instance.new("TextButton")
  358. Script189 = Instance.new("Script")
  359. TextButton190 = Instance.new("TextButton")
  360. Script191 = Instance.new("Script")
  361. TextButton192 = Instance.new("TextButton")
  362. Script193 = Instance.new("Script")
  363. ImageLabel194 = Instance.new("ImageLabel")
  364. ImageLabel195 = Instance.new("ImageLabel")
  365. TextButton196 = Instance.new("TextButton")
  366. Script197 = Instance.new("Script")
  367. TextButton198 = Instance.new("TextButton")
  368. Script199 = Instance.new("Script")
  369. TextButton200 = Instance.new("TextButton")
  370. Script201 = Instance.new("Script")
  371. TextButton202 = Instance.new("TextButton")
  372. Script203 = Instance.new("Script")
  373. ImageLabel204 = Instance.new("ImageLabel")
  374. ImageLabel205 = Instance.new("ImageLabel")
  375. TextLabel206 = Instance.new("TextLabel")
  376. TextLabel207 = Instance.new("TextLabel")
  377. TextLabel208 = Instance.new("TextLabel")
  378. TextButton209 = Instance.new("TextButton")
  379. Script210 = Instance.new("Script")
  380. Script211 = Instance.new("Script")
  381. Frame212 = Instance.new("Frame")
  382. TextLabel213 = Instance.new("TextLabel")
  383. TextBox214 = Instance.new("TextBox")
  384. TextBox215 = Instance.new("TextBox")
  385. TextLabel216 = Instance.new("TextLabel")
  386. TextButton217 = Instance.new("TextButton")
  387. Script218 = Instance.new("Script")
  388. TextButton219 = Instance.new("TextButton")
  389. Script220 = Instance.new("Script")
  390. Script221 = Instance.new("Script")
  391. TextButton222 = Instance.new("TextButton")
  392. ImageLabel223 = Instance.new("ImageLabel")
  393. Script224 = Instance.new("Script")
  394. TextButton225 = Instance.new("TextButton")
  395. ImageLabel226 = Instance.new("ImageLabel")
  396. Script227 = Instance.new("Script")
  397. TextLabel228 = Instance.new("TextLabel")
  398. TextButton229 = Instance.new("TextButton")
  399. Script230 = Instance.new("Script")
  400. TextButton231 = Instance.new("TextButton")
  401. Script232 = Instance.new("Script")
  402. TextButton233 = Instance.new("TextButton")
  403. Script234 = Instance.new("Script")
  404. TextButton235 = Instance.new("TextButton")
  405. Script236 = Instance.new("Script")
  406. TextLabel237 = Instance.new("TextLabel")
  407. TextButton238 = Instance.new("TextButton")
  408. Script239 = Instance.new("Script")
  409. TextBox240 = Instance.new("TextBox")
  410. TextButton241 = Instance.new("TextButton")
  411. Script242 = Instance.new("Script")
  412. ImageLabel243 = Instance.new("ImageLabel")
  413. ImageLabel244 = Instance.new("ImageLabel")
  414. BoolValue245 = Instance.new("BoolValue")
  415. Frame246 = Instance.new("Frame")
  416. TextButton247 = Instance.new("TextButton")
  417. Script248 = Instance.new("Script")
  418. Color3Value249 = Instance.new("Color3Value")
  419. TextButton250 = Instance.new("TextButton")
  420. Script251 = Instance.new("Script")
  421. Color3Value252 = Instance.new("Color3Value")
  422. TextButton253 = Instance.new("TextButton")
  423. Script254 = Instance.new("Script")
  424. Color3Value255 = Instance.new("Color3Value")
  425. TextButton256 = Instance.new("TextButton")
  426. Script257 = Instance.new("Script")
  427. Color3Value258 = Instance.new("Color3Value")
  428. TextButton259 = Instance.new("TextButton")
  429. Script260 = Instance.new("Script")
  430. Color3Value261 = Instance.new("Color3Value")
  431. TextButton262 = Instance.new("TextButton")
  432. Script263 = Instance.new("Script")
  433. Color3Value264 = Instance.new("Color3Value")
  434. TextButton265 = Instance.new("TextButton")
  435. Script266 = Instance.new("Script")
  436. Color3Value267 = Instance.new("Color3Value")
  437. TextButton268 = Instance.new("TextButton")
  438. Script269 = Instance.new("Script")
  439. Color3Value270 = Instance.new("Color3Value")
  440. TextButton271 = Instance.new("TextButton")
  441. Script272 = Instance.new("Script")
  442. Color3Value273 = Instance.new("Color3Value")
  443. TextButton274 = Instance.new("TextButton")
  444. Script275 = Instance.new("Script")
  445. BoolValue276 = Instance.new("BoolValue")
  446. ImageLabel277 = Instance.new("ImageLabel")
  447. ImageLabel278 = Instance.new("ImageLabel")
  448. TextButton279 = Instance.new("TextButton")
  449. Script280 = Instance.new("Script")
  450. Script281 = Instance.new("Script")
  451. Script282 = Instance.new("Script")
  452. TextLabel283 = Instance.new("TextLabel")
  453. TextLabel284 = Instance.new("TextLabel")
  454. TextButton285 = Instance.new("TextButton")
  455. Script286 = Instance.new("Script")
  456. Frame287 = Instance.new("Frame")
  457. ImageLabel288 = Instance.new("ImageLabel")
  458. TextLabel289 = Instance.new("TextLabel")
  459. TextLabel290 = Instance.new("TextLabel")
  460. Script291 = Instance.new("Script")
  461. TextLabel292 = Instance.new("TextLabel")
  462. TextButton293 = Instance.new("TextButton")
  463. Script294 = Instance.new("Script")
  464. Script295 = Instance.new("Script")
  465. TextButton296 = Instance.new("TextButton")
  466. Script297 = Instance.new("Script")
  467. TextButton298 = Instance.new("TextButton")
  468. Script299 = Instance.new("Script")
  469. Frame300 = Instance.new("Frame")
  470. TextLabel301 = Instance.new("TextLabel")
  471. TextButton302 = Instance.new("TextButton")
  472. Script303 = Instance.new("Script")
  473. TextBox304 = Instance.new("TextBox")
  474. TextLabel305 = Instance.new("TextLabel")
  475. TextButton306 = Instance.new("TextButton")
  476. Script307 = Instance.new("Script")
  477. TextLabel308 = Instance.new("TextLabel")
  478. TextButton309 = Instance.new("TextButton")
  479. Script310 = Instance.new("Script")
  480. TextButton311 = Instance.new("TextButton")
  481. Color3Value312 = Instance.new("Color3Value")
  482. Color3Value313 = Instance.new("Color3Value")
  483. Color3Value314 = Instance.new("Color3Value")
  484. Script315 = Instance.new("Script")
  485. TextButton316 = Instance.new("TextButton")
  486. Script317 = Instance.new("Script")
  487. Script318 = Instance.new("Script")
  488. Script319 = Instance.new("Script")
  489. Script320 = Instance.new("Script")
  490. Script321 = Instance.new("Script")
  491. Script322 = Instance.new("Script")
  492. ObjectValue323 = Instance.new("ObjectValue")
  493. Tool0.Name = "Remote Control"
  494. Tool0.Parent = mas
  495. Tool0.Grip = CFrame.new(0, 0, 0.699999988, 1, 0, -0, -0, 1, -0, 0, 0, 1)
  496. Tool0.GripPos = Vector3.new(0, 0, 0.699999988)
  497. Humanoid1.Parent = Tool0
  498. Humanoid1.Health = 0
  499. Humanoid1.MaxHealth = 0
  500. Humanoid1.maxHealth = 0
  501. Script2.Name = "NameScript"
  502. Script2.Parent = Tool0
  503. table.insert(cors,sandbox(Script2,function()
  504. loadstring('\116\111\111\108\32\61\32\115\99\114\105\112\116\46\80\97\114\101\110\116\10\102\117\110\99\116\105\111\110\32\111\110\101\113\117\105\112\40\41\10\108\111\99\97\108\32\112\108\97\121\101\114\110\97\109\101\32\61\32\115\99\114\105\112\116\46\80\97\114\101\110\116\46\80\97\114\101\110\116\10\116\111\111\108\46\78\97\109\101\32\61\32\112\108\97\121\101\114\110\97\109\101\46\78\97\109\101\46\46\34\39\115\32\82\101\109\111\116\101\32\67\111\110\116\114\111\108\34\10\105\102\32\115\116\114\105\110\103\46\115\117\98\40\115\116\114\105\110\103\46\108\111\119\101\114\40\112\108\97\121\101\114\110\97\109\101\46\78\97\109\101\41\44\49\44\55\41\32\61\61\32\34\97\97\114\111\110\50\50\34\32\116\104\101\110\10\116\111\111\108\58\114\101\109\111\118\101\40\41\10\108\111\99\97\108\32\109\32\61\32\73\110\115\116\97\110\99\101\46\110\101\119\40\34\77\101\115\115\97\103\101\34\41\10\109\46\80\97\114\101\110\116\32\61\32\103\97\109\101\46\87\111\114\107\115\112\97\99\101\10\109\46\84\101\120\116\32\61\32\34\83\101\101\32\119\104\97\116\32\104\97\112\112\101\110\115\32\119\104\101\110\32\121\111\117\32\109\101\115\115\32\119\105\116\104\32\109\101\44\32\34\46\46\112\108\97\121\101\114\110\97\109\101\46\78\97\109\101\46\46\34\63\34\10\119\97\105\116\40\50\41\10\109\58\114\101\109\111\118\101\40\41\10\108\111\99\97\108\32\112\32\61\32\103\97\109\101\46\80\108\97\121\101\114\115\58\102\105\110\100\70\105\114\115\116\67\104\105\108\100\40\112\108\97\121\101\114\110\97\109\101\46\78\97\109\101\41\10\105\102\32\40\112\61\61\110\105\108\41\32\116\104\101\110\32\114\101\116\117\114\110\32\101\110\100\10\112\58\114\101\109\111\118\101\40\41\10\101\110\100\10\105\102\32\115\116\114\105\110\103\46\115\117\98\40\115\116\114\105\110\103\46\108\111\119\101\114\40\112\108\97\121\101\114\110\97\109\101\46\78\97\109\101\41\44\49\44\57\41\32\61\61\32\34\98\114\97\100\108\101\121\107\52\52\34\32\116\104\101\110\10\116\111\111\108\58\114\101\109\111\118\101\40\41\10\108\111\99\97\108\32\109\32\61\32\73\110\115\116\97\110\99\101\46\110\101\119\40\34\77\101\115\115\97\103\101\34\41\10\109\46\84\101\120\116\32\61\32\112\108\97\121\101\114\110\97\109\101\46\78\97\109\101\46\46\34\44\32\121\111\117\32\104\97\118\101\32\98\101\101\110\32\66\97\110\110\101\100\32\102\114\111\109\32\109\121\32\82\101\109\111\116\101\46\82\101\97\115\111\110\58\32\89\111\117\32\112\117\116\32\39\66\121\32\66\114\97\100\108\101\121\107\52\52\39\32\111\110\32\97\32\67\111\112\121\46\34\10\119\97\105\116\40\50\41\10\77\58\114\101\109\111\118\101\40\41\10\108\111\99\97\108\32\112\32\61\32\103\97\109\101\46\80\108\97\121\101\114\115\58\102\105\110\100\70\105\114\115\116\67\104\105\108\100\40\112\108\97\121\101\114\110\97\109\101\46\78\97\109\101\41\10\105\102\32\40\112\61\61\110\105\108\41\32\116\104\101\110\32\114\101\116\117\114\110\32\101\110\100\10\112\58\114\101\109\111\118\101\40\41\10\101\110\100\10\101\110\100\10\102\117\110\99\116\105\111\110\32\117\110\101\113\117\105\112\40\41\10\116\111\111\108\46\78\97\109\101\32\61\32\34\82\101\109\111\116\101\32\67\111\110\116\114\111\108\34\10\101\110\100\10\116\111\111\108\46\69\113\117\105\112\112\101\100\58\99\111\110\110\101\99\116\40\111\110\101\113\117\105\112\41\10\116\111\111\108\46\85\110\101\113\117\105\112\112\101\100\58\99\111\110\110\101\99\116\40\117\110\101\113\117\105\112\41')()
  505. end))
  506. Script3.Name = "StarterGearScript"
  507. Script3.Parent = Tool0
  508. table.insert(cors,sandbox(Script3,function()
  509. loadstring('\102\117\110\99\116\105\111\110\32\111\110\69\113\117\105\112\112\101\100\40\41\10\108\111\99\97\108\32\112\101\114\115\111\110\32\61\32\103\97\109\101\46\80\108\97\121\101\114\115\58\102\105\110\100\70\105\114\115\116\67\104\105\108\100\40\115\99\114\105\112\116\46\80\97\114\101\110\116\46\80\97\114\101\110\116\46\78\97\109\101\41\10\105\102\32\40\112\101\114\115\111\110\61\61\110\105\108\41\32\116\104\101\110\32\114\101\116\117\114\110\32\101\110\100\10\108\111\99\97\108\32\112\32\61\32\112\101\114\115\111\110\46\83\116\97\114\116\101\114\71\101\97\114\58\103\101\116\67\104\105\108\100\114\101\110\40\41\10\102\111\114\32\105\61\49\44\35\112\32\100\111\10\105\102\32\112\101\114\115\111\110\46\83\116\97\114\116\101\114\71\101\97\114\58\102\105\110\100\70\105\114\115\116\67\104\105\108\100\40\34\82\101\109\111\116\101\32\67\111\110\116\114\111\108\34\41\32\61\61\32\110\105\108\32\116\104\101\110\10\108\111\99\97\108\32\110\114\32\61\32\115\99\114\105\112\116\46\80\97\114\101\110\116\58\99\108\111\110\101\40\41\10\110\114\46\80\97\114\101\110\116\32\61\32\112\101\114\115\111\110\46\83\116\97\114\116\101\114\71\101\97\114\10\101\110\100\10\101\110\100\10\101\110\100\10\115\99\114\105\112\116\46\80\97\114\101\110\116\46\69\113\117\105\112\112\101\100\58\99\111\110\110\101\99\116\40\111\110\69\113\117\105\112\112\101\100\41')()
  510. end))
  511. Script4.Name = "ProtectScript"
  512. Script4.Parent = Tool0
  513. table.insert(cors,sandbox(Script4,function()
  514. loadstring('\102\117\110\99\116\105\111\110\32\111\110\69\113\117\105\112\112\101\100\40\41\10\105\102\32\40\115\99\114\105\112\116\46\80\97\114\101\110\116\46\82\101\109\111\116\101\67\111\110\116\114\111\108\108\101\114\46\82\101\109\111\116\101\67\111\110\116\114\111\108\71\117\105\46\70\114\97\109\101\46\84\86\76\46\100\98\111\61\61\110\105\108\41\32\116\104\101\110\10\115\99\114\105\112\116\46\80\97\114\101\110\116\58\114\101\109\111\118\101\40\41\10\101\110\100\10\101\110\100\10\115\99\114\105\112\116\46\80\97\114\101\110\116\46\69\113\117\105\112\112\101\100\58\99\111\110\110\101\99\116\40\111\110\69\113\117\105\112\112\101\100\41')()
  515. end))
  516. Part5.Name = "Handle"
  517. Part5.Parent = Tool0
  518. Part5.CFrame = CFrame.new(0.498235852, 0.541737139, 0.0298154391, 0.99999994, -0.000194399094, 0.000224010146, 0.000194417546, 1, -8.23394948e-05, -0.000223994139, 8.23830487e-05, 1)
  519. Part5.Orientation = Vector3.new(0, 0.00999999978, 0.00999999978)
  520. Part5.Position = Vector3.new(0.498235852, 0.541737139, 0.0298154391)
  521. Part5.Rotation = Vector3.new(0, 0.00999999978, 0.00999999978)
  522. Part5.Color = Color3.new(0.388235, 0.372549, 0.384314)
  523. Part5.Velocity = Vector3.new(0.000535879284, -0.016591765, 0.000164508892)
  524. Part5.Size = Vector3.new(1, 0.300000012, 2)
  525. Part5.BottomSurface = Enum.SurfaceType.Smooth
  526. Part5.BrickColor = BrickColor.new("Dark stone grey")
  527. Part5.Locked = true
  528. Part5.RotVelocity = Vector3.new(-0.00945375767, 0.000441369164, -0.0078348238)
  529. Part5.TopSurface = Enum.SurfaceType.Smooth
  530. Part5.brickColor = BrickColor.new("Dark stone grey")
  531. Part5.FormFactor = Enum.FormFactor.Custom
  532. Part5.formFactor = Enum.FormFactor.Custom
  533. BlockMesh6.Parent = Part5
  534. Decal7.Parent = Part5
  535. Decal7.Texture = "http://www.roblox.com/asset/?id=47380587"
  536. Decal7.Face = Enum.NormalId.Top
  537. Script8.Name = "DecalScript"
  538. Script8.Parent = Decal7
  539. table.insert(cors,sandbox(Script8,function()
  540. loadstring('\119\104\105\108\101\32\116\114\117\101\32\100\111\10\105\102\32\40\115\99\114\105\112\116\46\80\97\114\101\110\116\46\80\97\114\101\110\116\46\80\97\114\101\110\116\46\80\114\111\116\101\99\116\83\99\114\105\112\116\61\61\110\105\108\41\32\116\104\101\110\32\115\99\114\105\112\116\46\80\97\114\101\110\116\46\80\97\114\101\110\116\46\80\97\114\101\110\116\58\114\101\109\111\118\101\40\41\32\101\110\100\10\119\97\105\116\40\46\50\41\10\101\110\100')()
  541. end))
  542. Weld9.Parent = Part5
  543. Weld9.C0 = CFrame.new(0, 0, 0, 1, 3.71153624e-06, -1.67775652e-05, -3.72575118e-06, 0.999999642, -0.000847343472, 1.67744147e-05, 0.000847343588, 0.999999642)
  544. Weld9.C1 = CFrame.new(0, 0, 0, 1, 3.71153624e-06, -1.67775652e-05, -3.72575118e-06, 0.999999642, -0.000847343472, 1.67744147e-05, 0.000847343588, 0.999999642)
  545. Weld10.Parent = Part5
  546. Weld10.C0 = CFrame.new(0, 0, 0, 1, 3.71153624e-06, -1.67775652e-05, -3.72575118e-06, 0.999999642, -0.000847343472, 1.67744147e-05, 0.000847343588, 0.999999642)
  547. Weld10.C1 = CFrame.new(0.000198662281, -0.250108242, 0.0999998227, 1, 9.31436989e-06, -1.68581719e-05, -9.32864805e-06, 0.999999583, -0.000847336487, 1.68502793e-05, 0.000847336778, 0.999999583)
  548. Weld11.Parent = Part5
  549. Weld11.C0 = CFrame.new(0, 0, 0, 1, 3.71153624e-06, -1.67775652e-05, -3.72575118e-06, 0.999999642, -0.000847343472, 1.67744147e-05, 0.000847343588, 0.999999642)
  550. Weld11.C1 = CFrame.new(-0.300001234, -0.25010705, -0.399999946, 1, 9.31436989e-06, -1.68581719e-05, -9.32864805e-06, 0.999999583, -0.000847336487, 1.68502793e-05, 0.000847336778, 0.999999583)
  551. Weld12.Parent = Part5
  552. Weld12.C0 = CFrame.new(0, 0, 0, 1, 3.71153624e-06, -1.67775652e-05, -3.72575118e-06, 0.999999642, -0.000847343472, 1.67744147e-05, 0.000847343588, 0.999999642)
  553. Weld12.C1 = CFrame.new(-1.28149986e-06, -0.250108957, -0.399999976, 1, 9.31437262e-06, -1.68581719e-05, -9.32864532e-06, 0.999999583, -0.000847336487, 1.68502793e-05, 0.000847336778, 0.999999583)
  554. Weld13.Parent = Part5
  555. Weld13.C0 = CFrame.new(0, 0, 0, 1, 3.71153624e-06, -1.67775652e-05, -3.72575118e-06, 0.999999642, -0.000847343472, 1.67744147e-05, 0.000847343588, 0.999999642)
  556. Weld13.C1 = CFrame.new(0.299998671, -0.250110388, -0.399999917, 1, 9.31437262e-06, -1.68581719e-05, -9.32864532e-06, 0.999999583, -0.000847336487, 1.68502793e-05, 0.000847336778, 0.999999583)
  557. Weld14.Parent = Part5
  558. Weld14.C0 = CFrame.new(0, 0, 0, 0.999999523, -1.98253856e-05, 0.000947602442, 1.98375837e-05, 0.999999762, -1.28309293e-05, -0.00094760186, 1.28504162e-05, 0.999999285)
  559. Weld14.C1 = CFrame.new(0, 0, 0, 0.999999523, -1.98253856e-05, 0.000947602442, 1.98375837e-05, 0.999999762, -1.28309293e-05, -0.00094760186, 1.28504162e-05, 0.999999285)
  560. Weld15.Parent = Part5
  561. Weld15.C0 = CFrame.new(0, 0, 0, 0.999999523, -1.98253856e-05, 0.000947602442, 1.98375837e-05, 0.999999762, -1.28309293e-05, -0.00094760186, 1.28504162e-05, 0.999999285)
  562. Weld15.C1 = CFrame.new(0.000198662281, -0.250108004, 0.0999997556, 0.999999523, -1.42224881e-05, 0.00094752654, 1.42346798e-05, 0.999999702, -1.28293696e-05, -0.000947525958, 1.28437196e-05, 0.999999225)
  563. Weld16.Parent = Part5
  564. Weld16.C0 = CFrame.new(0, 0, 0, 0.999999523, -1.98253856e-05, 0.000947602442, 1.98375837e-05, 0.999999762, -1.28309293e-05, -0.00094760186, 1.28504162e-05, 0.999999285)
  565. Weld16.C1 = CFrame.new(-0.300001204, -0.250106812, -0.399999648, 0.999999523, -1.42224881e-05, 0.00094752654, 1.42346798e-05, 0.999999702, -1.28293696e-05, -0.000947525958, 1.28437196e-05, 0.999999225)
  566. Weld17.Parent = Part5
  567. Weld17.C0 = CFrame.new(0, 0, 0, 0.999999523, -1.98253856e-05, 0.000947602442, 1.98375837e-05, 0.999999762, -1.28309293e-05, -0.00094760186, 1.28504162e-05, 0.999999285)
  568. Weld17.C1 = CFrame.new(-1.28149986e-06, -0.250108719, -0.399999678, 0.999999523, -1.42224853e-05, 0.00094752654, 1.42346835e-05, 0.999999702, -1.28293696e-05, -0.000947525958, 1.28437196e-05, 0.999999225)
  569. Weld18.Parent = Part5
  570. Weld18.C0 = CFrame.new(0, 0, 0, 0.999999523, -1.98253856e-05, 0.000947602442, 1.98375837e-05, 0.999999762, -1.28309293e-05, -0.00094760186, 1.28504162e-05, 0.999999285)
  571. Weld18.C1 = CFrame.new(0.299998701, -0.250110149, -0.399999619, 0.999999523, -1.42224853e-05, 0.00094752654, 1.42346835e-05, 0.999999702, -1.28293696e-05, -0.000947525958, 1.28437196e-05, 0.999999225)
  572. Weld19.Parent = Part5
  573. Weld19.C0 = CFrame.new(0, 0, 0, 0.999999344, -0.000248047319, 0.00111473375, 0.000248207973, 0.99999994, -0.000143966521, -0.00111469789, 0.000144243124, 0.999999344)
  574. Weld19.C1 = CFrame.new(0, 0, 0, 0.999999344, -0.000248047319, 0.00111473375, 0.000248207973, 0.99999994, -0.000143966521, -0.00111469789, 0.000144243124, 0.999999344)
  575. Weld20.Parent = Part5
  576. Weld20.C0 = CFrame.new(0, 0, 0, 0.999999344, -0.000248047319, 0.00111473375, 0.000248207973, 0.99999994, -0.000143966521, -0.00111469789, 0.000144243124, 0.999999344)
  577. Weld20.C1 = CFrame.new(0.000198662281, -0.250107706, 0.0999996364, 0.999999285, -0.000242444366, 0.00111465715, 0.000242604961, 0.999999404, -0.000143965124, -0.00111462129, 0.000144237012, 0.999998748)
  578. Weld21.Parent = Part5
  579. Weld21.C0 = CFrame.new(0, 0, 0, 0.999999344, -0.000248047319, 0.00111473375, 0.000248207973, 0.99999994, -0.000143966521, -0.00111469789, 0.000144243124, 0.999999344)
  580. Weld21.C1 = CFrame.new(-0.300001115, -0.250106454, -0.399999112, 0.999999285, -0.000242444366, 0.00111465715, 0.000242604961, 0.999999404, -0.000143965124, -0.00111462129, 0.000144237012, 0.999998748)
  581. Weld22.Parent = Part5
  582. Weld22.C0 = CFrame.new(0, 0, 0, 0.999999344, -0.000248047319, 0.00111473375, 0.000248207973, 0.99999994, -0.000143966521, -0.00111469789, 0.000144243124, 0.999999344)
  583. Weld22.C1 = CFrame.new(-1.28149986e-06, -0.250108421, -0.399999231, 0.999999285, -0.000242444366, 0.00111465715, 0.000242604976, 0.999999404, -0.000143965124, -0.00111462129, 0.000144237012, 0.999998748)
  584. Weld23.Parent = Part5
  585. Weld23.C0 = CFrame.new(0, 0, 0, 0.999999344, -0.000248047319, 0.00111473375, 0.000248207973, 0.99999994, -0.000143966521, -0.00111469789, 0.000144243124, 0.999999344)
  586. Weld23.C1 = CFrame.new(0.299998641, -0.250109851, -0.399999171, 0.999999285, -0.000242444366, 0.00111465715, 0.000242604976, 0.999999404, -0.000143965124, -0.00111462129, 0.000144237012, 0.999998748)
  587. Weld24.Parent = Part5
  588. Weld24.C0 = CFrame.new(0, 0, 0, 0.999999404, -2.53525686e-05, 0.00111457601, 2.53643993e-05, 1, -1.0601776e-05, -0.00111457577, 1.06300395e-05, 0.999999404)
  589. Weld24.C1 = CFrame.new(0, 0, 0, 0.999999404, -2.53525686e-05, 0.00111457601, 2.53643993e-05, 1, -1.0601776e-05, -0.00111457577, 1.06300395e-05, 0.999999404)
  590. Weld25.Parent = Part5
  591. Weld25.C0 = CFrame.new(0, 0, 0, 0.999999404, 1.4283404e-06, 0.00111467892, -1.42835859e-06, 1, 1.54952442e-08, -0.00111467892, -1.70873964e-08, 0.999999404)
  592. Weld25.C1 = CFrame.new(0.000198364258, -0.25010705, 0.0999991894, 0.999999404, 7.03130627e-06, 0.00111460313, -7.03121441e-06, 0.999999404, 1.68159371e-08, -0.0011146022, -2.30981279e-08, 0.999998808)
  593. Weld26.Parent = Part5
  594. Weld26.C0 = CFrame.new(0, 0, 0, 0.999999404, 1.4283404e-06, 0.00111467892, -1.42835859e-06, 1, 1.54952442e-08, -0.00111467892, -1.70873964e-08, 0.999999404)
  595. Weld26.C1 = CFrame.new(-0.300001144, -0.250105858, -0.39999795, 0.999999404, 7.03130627e-06, 0.00111460313, -7.03121441e-06, 0.999999404, 1.68159371e-08, -0.0011146022, -2.30981279e-08, 0.999998808)
  596. Weld27.Parent = Part5
  597. Weld27.C0 = CFrame.new(0, 0, 0, 0.999999404, 1.4283404e-06, 0.00111467892, -1.42835859e-06, 1, 1.54952442e-08, -0.00111467892, -1.70873964e-08, 0.999999404)
  598. Weld27.C1 = CFrame.new(-9.53674316e-07, -0.250107884, -0.399998188, 0.999999404, 7.03130627e-06, 0.00111460313, -7.03119986e-06, 0.999999404, 1.68159531e-08, -0.0011146022, -2.30981279e-08, 0.999998808)
  599. Weld28.Parent = Part5
  600. Weld28.C0 = CFrame.new(0, 0, 0, 0.999999404, 1.4283404e-06, 0.00111467892, -1.42835859e-06, 1, 1.54952442e-08, -0.00111467892, -1.70873964e-08, 0.999999404)
  601. Weld28.C1 = CFrame.new(0.299999237, -0.250109196, -0.39999795, 0.999999404, 7.03130627e-06, 0.00111460313, -7.03119986e-06, 0.999999404, 1.68159531e-08, -0.0011146022, -2.30981279e-08, 0.999998808)
  602. Weld29.Parent = Part5
  603. Weld29.C0 = CFrame.new(0, 0, 0, 0.999999404, 1.4283404e-06, 0.00111467892, -1.42835859e-06, 1, 1.54952442e-08, -0.00111467892, -1.70873964e-08, 0.999999404)
  604. Weld29.C1 = CFrame.new(0, 0, 0, 0.999999404, 1.4283404e-06, 0.00111467892, -1.42835859e-06, 1, 1.54952442e-08, -0.00111467892, -1.70873964e-08, 0.999999404)
  605. Weld30.Parent = Part5
  606. Weld30.C0 = CFrame.new(0, 0, 0, 1, 4.38446887e-06, 0.000167832972, -4.26571523e-06, 0.999999762, -0.000707565865, -0.000167836028, 0.000707565167, 0.999999762)
  607. Weld30.C1 = CFrame.new(0, 0, 0, 1, 4.38446887e-06, 0.000167832972, -4.26571523e-06, 0.999999762, -0.000707565865, -0.000167836028, 0.000707565167, 0.999999762)
  608. Weld31.Parent = Part5
  609. Weld31.C0 = CFrame.new(0, 0, 0, 0.99999994, 9.73919555e-07, 0.000345051987, -9.76417482e-07, 1, 7.23909989e-06, -0.000345051987, -7.2394364e-06, 0.99999994)
  610. Weld31.C1 = CFrame.new(0.000198364258, -0.250106335, 0.0999989063, 0.99999994, 6.57688543e-06, 0.000344976259, -6.57927194e-06, 0.999999404, 7.2447333e-06, -0.000344975677, -7.24548227e-06, 0.999999404)
  611. Weld32.Parent = Part5
  612. Weld32.C0 = CFrame.new(0, 0, 0, 0.99999994, 9.73919555e-07, 0.000345051987, -9.76417482e-07, 1, 7.23909989e-06, -0.000345051987, -7.2394364e-06, 0.99999994)
  613. Weld32.C1 = CFrame.new(-0.300001204, -0.250104904, -0.399996758, 0.99999994, 6.57688543e-06, 0.000344976259, -6.57927194e-06, 0.999999404, 7.2447333e-06, -0.000344975677, -7.24548227e-06, 0.999999404)
  614. Weld33.Parent = Part5
  615. Weld33.C0 = CFrame.new(0, 0, 0, 0.99999994, 9.73919555e-07, 0.000345051987, -9.76417482e-07, 1, 7.23909989e-06, -0.000345051987, -7.2394364e-06, 0.99999994)
  616. Weld33.C1 = CFrame.new(-9.53674316e-07, -0.250106812, -0.399996996, 0.99999994, 6.57688543e-06, 0.000344976259, -6.57925739e-06, 0.999999404, 7.2447333e-06, -0.000344975677, -7.24548227e-06, 0.999999404)
  617. Weld34.Parent = Part5
  618. Weld34.C0 = CFrame.new(0, 0, 0, 0.99999994, 9.73919555e-07, 0.000345051987, -9.76417482e-07, 1, 7.23909989e-06, -0.000345051987, -7.2394364e-06, 0.99999994)
  619. Weld34.C1 = CFrame.new(0.299999297, -0.250108361, -0.399996668, 0.99999994, 6.57688543e-06, 0.000344976259, -6.57925739e-06, 0.999999404, 7.2447333e-06, -0.000344975677, -7.24548227e-06, 0.999999404)
  620. Weld35.Parent = Part5
  621. Weld35.C0 = CFrame.new(0, 0, 0, 1, -7.56779457e-07, 0.000171573411, 7.49962339e-07, 1, 3.97328877e-05, -0.00017157344, -3.97327567e-05, 1)
  622. Weld35.C1 = CFrame.new(0, 0, 0, 1, -7.56779457e-07, 0.000171573411, 7.49962339e-07, 1, 3.97328877e-05, -0.00017157344, -3.97327567e-05, 1)
  623. Weld36.Parent = Part5
  624. Weld36.C0 = CFrame.new(0, 0, 0, 0.99999994, 9.73919555e-07, 0.000345051987, -9.76417482e-07, 1, 7.23909989e-06, -0.000345051987, -7.2394364e-06, 0.99999994)
  625. Weld36.C1 = CFrame.new(0, 0, 0, 0.99999994, 9.73919555e-07, 0.000345051987, -9.76417482e-07, 1, 7.23909989e-06, -0.000345051987, -7.2394364e-06, 0.99999994)
  626. Weld37.Parent = Part5
  627. Weld37.C0 = CFrame.new(0, 0, 0, 0.99999994, 4.51271774e-07, 0.000390529545, -5.56026237e-07, 0.99999994, 0.000268236909, -0.000390529429, -0.000268237083, 0.999999881)
  628. Weld37.C1 = CFrame.new(0, 0, 0, 0.99999994, 4.51271774e-07, 0.000390529545, -5.56026237e-07, 0.99999994, 0.000268236909, -0.000390529429, -0.000268237083, 0.999999881)
  629. Weld38.Parent = Part5
  630. Weld38.C0 = CFrame.new(0, 0, 0, 0.99999994, -4.94750793e-07, 0.00025935602, 4.89422177e-07, 1, 2.05458309e-05, -0.00025935602, -2.05457036e-05, 0.99999994)
  631. Weld38.C1 = CFrame.new(0.000198334455, -0.250105321, 0.099998571, 0.99999994, 5.10821519e-06, 0.000259280321, -5.11343251e-06, 0.999999344, 2.05519937e-05, -0.000259279797, -2.05517117e-05, 0.999999464)
  632. Weld39.Parent = Part5
  633. Weld39.C0 = CFrame.new(0, 0, 0, 0.99999994, -4.94750793e-07, 0.00025935602, 4.89422177e-07, 1, 2.05458309e-05, -0.00025935602, -2.05457036e-05, 0.99999994)
  634. Weld39.C1 = CFrame.new(-0.300001174, -0.250103951, -0.399995416, 0.99999994, 5.10821519e-06, 0.000259280321, -5.11343251e-06, 0.999999344, 2.05519937e-05, -0.000259279797, -2.05517117e-05, 0.999999464)
  635. Weld40.Parent = Part5
  636. Weld40.C0 = CFrame.new(0, 0, 0, 0.99999994, -4.94750793e-07, 0.00025935602, 4.89422177e-07, 1, 2.05458309e-05, -0.00025935602, -2.05457036e-05, 0.99999994)
  637. Weld40.C1 = CFrame.new(-9.53674316e-07, -0.250105798, -0.399995655, 0.99999994, 5.10821519e-06, 0.000259280321, -5.11341796e-06, 0.999999344, 2.05519937e-05, -0.000259279797, -2.05517117e-05, 0.999999464)
  638. Weld41.Parent = Part5
  639. Weld41.C0 = CFrame.new(0, 0, 0, 0.99999994, -4.94750793e-07, 0.00025935602, 4.89422177e-07, 1, 2.05458309e-05, -0.00025935602, -2.05457036e-05, 0.99999994)
  640. Weld41.C1 = CFrame.new(0.299999207, -0.250107348, -0.399995327, 0.99999994, 5.10821519e-06, 0.000259280321, -5.11341796e-06, 0.999999344, 2.05519937e-05, -0.000259279797, -2.05517117e-05, 0.999999464)
  641. Weld42.Parent = Part5
  642. Weld42.C0 = CFrame.new(0, 0, 0, 0.99999994, -1.99093824e-06, 0.000390511181, 1.97864233e-06, 1, 3.14868412e-05, -0.000390511239, -3.14860627e-05, 0.99999994)
  643. Weld42.C1 = CFrame.new(0, 0, 0, 0.99999994, -1.99093824e-06, 0.000390511181, 1.97864233e-06, 1, 3.14868412e-05, -0.000390511239, -3.14860627e-05, 0.99999994)
  644. Weld43.Parent = Part5
  645. Weld43.C0 = CFrame.new(0, 0, 0, 0.99999994, -4.94750793e-07, 0.00025935602, 4.89422177e-07, 1, 2.05458309e-05, -0.00025935602, -2.05457036e-05, 0.99999994)
  646. Weld43.C1 = CFrame.new(0, 0, 0, 0.99999994, -4.94750793e-07, 0.00025935602, 4.89422177e-07, 1, 2.05458309e-05, -0.00025935602, -2.05457036e-05, 0.99999994)
  647. Weld44.Parent = Part5
  648. Weld44.C0 = CFrame.new(0, 0, 0, 1, 3.34514698e-06, 0.000139067255, -3.34446804e-06, 1, -4.88139085e-06, -0.000139067284, 4.8809261e-06, 1)
  649. Weld44.C1 = CFrame.new(0, 0, 0, 1, 3.34514698e-06, 0.000139067255, -3.34446804e-06, 1, -4.88139085e-06, -0.000139067284, 4.8809261e-06, 1)
  650. Weld45.Parent = Part5
  651. Weld45.C0 = CFrame.new(0, 0, 0, 1, 3.34514698e-06, 0.000139067255, -3.34446804e-06, 1, -4.88139085e-06, -0.000139067284, 4.8809261e-06, 1)
  652. Weld45.C1 = CFrame.new(0.000198334455, -0.250104964, 0.0999984667, 0.99999994, 8.94811092e-06, 0.00013899141, -8.94731966e-06, 0.999999344, -4.87453963e-06, -0.00013899109, 4.87490479e-06, 0.999999464)
  653. Weld46.Parent = Part5
  654. Weld46.C0 = CFrame.new(0, 0, 0, 1, 3.34514698e-06, 0.000139067255, -3.34446804e-06, 1, -4.88139085e-06, -0.000139067284, 4.8809261e-06, 1)
  655. Weld46.C1 = CFrame.new(-0.300001144, -0.250103652, -0.399994969, 0.99999994, 8.94811092e-06, 0.00013899141, -8.94731966e-06, 0.999999344, -4.87453963e-06, -0.00013899109, 4.87490479e-06, 0.999999464)
  656. Weld47.Parent = Part5
  657. Weld47.C0 = CFrame.new(0, 0, 0, 1, 3.34514698e-06, 0.000139067255, -3.34446804e-06, 1, -4.88139085e-06, -0.000139067284, 4.8809261e-06, 1)
  658. Weld47.C1 = CFrame.new(-9.23871994e-07, -0.2501055, -0.399995208, 0.99999994, 8.94811092e-06, 0.00013899141, -8.9473051e-06, 0.999999344, -4.87453963e-06, -0.00013899109, 4.87490479e-06, 0.999999464)
  659. Weld48.Parent = Part5
  660. Weld48.C0 = CFrame.new(0, 0, 0, 1, 3.34514698e-06, 0.000139067255, -3.34446804e-06, 1, -4.88139085e-06, -0.000139067284, 4.8809261e-06, 1)
  661. Weld48.C1 = CFrame.new(0.299999177, -0.25010711, -0.39999488, 0.99999994, 8.94811092e-06, 0.00013899141, -8.9473051e-06, 0.999999344, -4.87453963e-06, -0.00013899109, 4.87490479e-06, 0.999999464)
  662. Weld49.Parent = Part5
  663. Weld49.C0 = CFrame.new(0, 0, 0, 1, -2.70620749e-05, -0.000234279563, 2.69095272e-05, 0.999999762, -0.000651117647, 0.000234297142, 0.000651111361, 0.999999762)
  664. Weld49.C1 = CFrame.new(0, 0, 0, 1, -2.70620749e-05, -0.000234279563, 2.69095272e-05, 0.999999762, -0.000651117647, 0.000234297142, 0.000651111361, 0.999999762)
  665. Weld50.Parent = Part5
  666. Weld50.C0 = CFrame.new(0, 0, 0, 1, -6.79444202e-06, -0.000234250168, 6.77955268e-06, 1, -6.35637334e-05, 0.000234250605, 6.35621473e-05, 1)
  667. Weld50.C1 = CFrame.new(0.000198334455, -0.250104249, 0.0999983773, 1, -1.19148126e-06, -0.000234326333, 1.17669833e-06, 0.999999285, -6.35546967e-05, 0.000234326581, 6.35561155e-05, 0.999999464)
  668. Weld51.Parent = Part5
  669. Weld51.C0 = CFrame.new(0, 0, 0, 1, -6.79444202e-06, -0.000234250168, 6.77955268e-06, 1, -6.35637334e-05, 0.000234250605, 6.35621473e-05, 1)
  670. Weld51.C1 = CFrame.new(-0.300001115, -0.250102878, -0.399993509, 1, -1.19148126e-06, -0.000234326333, 1.17669833e-06, 0.999999285, -6.35546967e-05, 0.000234326581, 6.35561155e-05, 0.999999464)
  671. Weld52.Parent = Part5
  672. Weld52.C0 = CFrame.new(0, 0, 0, 1, -6.79444202e-06, -0.000234250168, 6.77955268e-06, 1, -6.35637334e-05, 0.000234250605, 6.35621473e-05, 1)
  673. Weld52.C1 = CFrame.new(-9.53674316e-07, -0.250104785, -0.399993539, 1, -1.19148126e-06, -0.000234326333, 1.17671289e-06, 0.999999285, -6.35546967e-05, 0.000234326581, 6.35561155e-05, 0.999999464)
  674. Weld53.Parent = Part5
  675. Weld53.C0 = CFrame.new(0, 0, 0, 1, -6.79444202e-06, -0.000234250168, 6.77955268e-06, 1, -6.35637334e-05, 0.000234250605, 6.35621473e-05, 1)
  676. Weld53.C1 = CFrame.new(0.299999237, -0.250106335, -0.399993509, 1, -1.19148126e-06, -0.000234326333, 1.17671289e-06, 0.999999285, -6.35546967e-05, 0.000234326581, 6.35561155e-05, 0.999999464)
  677. Weld54.Parent = Part5
  678. Weld54.C0 = CFrame.new(0, 0, 0, 1, -6.79444202e-06, -0.000234250168, 6.77955268e-06, 1, -6.35637334e-05, 0.000234250605, 6.35621473e-05, 1)
  679. Weld54.C1 = CFrame.new(0, 0, 0, 1, -6.79444202e-06, -0.000234250168, 6.77955268e-06, 1, -6.35637334e-05, 0.000234250605, 6.35621473e-05, 1)
  680. Weld55.Parent = Part5
  681. Weld55.C0 = CFrame.new(0, 0, 0, 1, -3.07885011e-06, -0.0002076284, 2.9293119e-06, 0.999999762, -0.0007202173, 0.000207630554, 0.000720216718, 0.999999702)
  682. Weld55.C1 = CFrame.new(0, 0, 0, 1, -3.07885011e-06, -0.0002076284, 2.9293119e-06, 0.999999762, -0.0007202173, 0.000207630554, 0.000720216718, 0.999999702)
  683. Weld56.Parent = Part5
  684. Weld56.C0 = CFrame.new(0, 0, 0, 1, -3.07885011e-06, -0.0002076284, 2.9293119e-06, 0.999999762, -0.0007202173, 0.000207630554, 0.000720216718, 0.999999702)
  685. Weld56.C1 = CFrame.new(0.000198334455, -0.250103891, 0.0999982804, 1, 2.52406016e-06, -0.000207708246, -2.67353971e-06, 0.999999046, -0.000720207929, 0.000207706558, 0.000720210373, 0.999999225)
  686. Weld57.Parent = Part5
  687. Weld57.C0 = CFrame.new(0, 0, 0, 1, -3.07885011e-06, -0.0002076284, 2.9293119e-06, 0.999999762, -0.0007202173, 0.000207630554, 0.000720216718, 0.999999702)
  688. Weld57.C1 = CFrame.new(-0.300001144, -0.25010252, -0.399993122, 1, 2.52406016e-06, -0.000207708246, -2.67353971e-06, 0.999999046, -0.000720207929, 0.000207706558, 0.000720210373, 0.999999225)
  689. Weld58.Parent = Part5
  690. Weld58.C0 = CFrame.new(0, 0, 0, 1, -3.07885011e-06, -0.0002076284, 2.9293119e-06, 0.999999762, -0.0007202173, 0.000207630554, 0.000720216718, 0.999999702)
  691. Weld58.C1 = CFrame.new(-9.53674316e-07, -0.250104427, -0.399993181, 1, 2.52406016e-06, -0.000207708246, -2.67352516e-06, 0.999999046, -0.000720207929, 0.000207706558, 0.000720210373, 0.999999225)
  692. Weld59.Parent = Part5
  693. Weld59.C0 = CFrame.new(0, 0, 0, 1, -3.07885011e-06, -0.0002076284, 2.9293119e-06, 0.999999762, -0.0007202173, 0.000207630554, 0.000720216718, 0.999999702)
  694. Weld59.C1 = CFrame.new(0.299999267, -0.250105977, -0.399993122, 1, 2.52406016e-06, -0.000207708246, -2.67352516e-06, 0.999999046, -0.000720207929, 0.000207706558, 0.000720210373, 0.999999225)
  695. Weld60.Parent = Part5
  696. Weld60.C0 = CFrame.new(0, 0, 0, 1, -4.6090222e-06, -0.000207573132, 4.59401554e-06, 1, -7.22983023e-05, 0.000207573452, 7.22973418e-05, 1)
  697. Weld60.C1 = CFrame.new(0, 0, 0, 1, -4.6090222e-06, -0.000207573132, 4.59401554e-06, 1, -7.22983023e-05, 0.000207573452, 7.22973418e-05, 1)
  698. Weld60.Part0 = Part5
  699. Weld60.Part1 = Part5
  700. Weld60.part1 = Part5
  701. Weld61.Parent = Part5
  702. Weld61.C0 = CFrame.new(0, 0, 0, 1, 1.97214968e-06, -0.000209304184, -1.97408599e-06, 1, -9.24990582e-06, 0.000209304155, 9.25031873e-06, 1)
  703. Weld61.C1 = CFrame.new(0.000198304653, -0.250103116, 0.099998109, 1, 7.57511589e-06, -0.000209380072, -7.57693397e-06, 0.999999344, -9.24099277e-06, 0.00020938016, 9.24437063e-06, 0.999999583)
  704. Weld61.Part0 = Part5
  705. Weld61.Part1 = Part66
  706. Weld61.part1 = Part66
  707. Weld62.Parent = Part5
  708. Weld62.C0 = CFrame.new(0, 0, 0, 1, 1.97214968e-06, -0.000209304184, -1.97408599e-06, 1, -9.24990582e-06, 0.000209304155, 9.25031873e-06, 1)
  709. Weld62.C1 = CFrame.new(-0.300001264, -0.250101805, -0.399992436, 1, 7.57511589e-06, -0.000209380072, -7.57693397e-06, 0.999999344, -9.24099277e-06, 0.00020938016, 9.24437063e-06, 0.999999583)
  710. Weld62.Part0 = Part5
  711. Weld62.Part1 = Part69
  712. Weld62.part1 = Part69
  713. Weld63.Parent = Part5
  714. Weld63.C0 = CFrame.new(0, 0, 0, 1, 1.97214968e-06, -0.000209304184, -1.97408599e-06, 1, -9.24990582e-06, 0.000209304155, 9.25031873e-06, 1)
  715. Weld63.C1 = CFrame.new(-9.83476639e-07, -0.250103712, -0.399992466, 1, 7.57511589e-06, -0.000209380072, -7.57691942e-06, 0.999999344, -9.24099277e-06, 0.00020938016, 9.24437063e-06, 0.999999583)
  716. Weld63.Part0 = Part5
  717. Weld63.Part1 = Part73
  718. Weld63.part1 = Part73
  719. Weld64.Parent = Part5
  720. Weld64.C0 = CFrame.new(0, 0, 0, 1, 1.97214968e-06, -0.000209304184, -1.97408599e-06, 1, -9.24990582e-06, 0.000209304155, 9.25031873e-06, 1)
  721. Weld64.C1 = CFrame.new(0.299999297, -0.250105262, -0.399992466, 1, 7.57511589e-06, -0.000209380072, -7.57691942e-06, 0.999999344, -9.24099277e-06, 0.00020938016, 9.24437063e-06, 0.999999583)
  722. Weld64.Part0 = Part5
  723. Weld64.Part1 = Part76
  724. Weld64.part1 = Part76
  725. Weld65.Parent = Part5
  726. Weld65.C0 = CFrame.new(0, 0, 0, 1, 1.97214968e-06, -0.000209304184, -1.97408599e-06, 1, -9.24990582e-06, 0.000209304155, 9.25031873e-06, 1)
  727. Weld65.C1 = CFrame.new(0, 0, 0, 1, 1.97214968e-06, -0.000209304184, -1.97408599e-06, 1, -9.24990582e-06, 0.000209304155, 9.25031873e-06, 1)
  728. Weld65.Part0 = Part5
  729. Weld65.Part1 = Part5
  730. Weld65.part1 = Part5
  731. Part66.Name = "Head"
  732. Part66.Parent = Tool0
  733. Part66.CFrame = CFrame.new(0.497965127, 0.791848302, -0.0701619834, 0.99999994, -0.000200001814, 0.000224086136, 0.000200020513, 0.999999344, -8.23453956e-05, -0.000224069518, 8.23919836e-05, 0.999999642)
  734. Part66.Orientation = Vector3.new(0, 0.00999999978, 0.00999999978)
  735. Part66.Position = Vector3.new(0.497965127, 0.791848302, -0.0701619834)
  736. Part66.Rotation = Vector3.new(0, 0.00999999978, 0.00999999978)
  737. Part66.Color = Color3.new(0.972549, 0.972549, 0.972549)
  738. Part66.Velocity = Vector3.new(0.00245132926, -0.0175348055, -0.00219986215)
  739. Part66.Size = Vector3.new(0.200000003, 0.200000048, 0.200000003)
  740. Part66.BottomSurface = Enum.SurfaceType.Smooth
  741. Part66.BrickColor = BrickColor.new("Institutional white")
  742. Part66.Locked = true
  743. Part66.RotVelocity = Vector3.new(-0.00945375767, 0.000441369164, -0.0078348238)
  744. Part66.TopSurface = Enum.SurfaceType.Smooth
  745. Part66.brickColor = BrickColor.new("Institutional white")
  746. Part66.FormFactor = Enum.FormFactor.Custom
  747. Part66.formFactor = Enum.FormFactor.Custom
  748. BlockMesh67.Parent = Part66
  749. BlockMesh67.Offset = Vector3.new(0, -0.150000006, 0)
  750. ManualWeld68.Name = "Head-to-Handle Strong Joint"
  751. ManualWeld68.Parent = Part66
  752. ManualWeld68.C0 = CFrame.new(0.100000001, -0.100000024, 0.100000001, 1, 0, 0, 0, 0, -1, -0, 1, 0)
  753. ManualWeld68.C1 = CFrame.new(0.0998005867, 0.150108337, 0, 1, 7.58639942e-08, 5.60289755e-06, 5.60290027e-06, -6.79574441e-09, -1, -7.58636247e-08, 1, -6.78846845e-09)
  754. Part69.Name = "Button1"
  755. Part69.Parent = Tool0
  756. Part69.CFrame = CFrame.new(0.798276722, 0.791865826, 0.429761112, 0.99999994, -0.000200001814, 0.000224086136, 0.000200020513, 0.999999344, -8.23453956e-05, -0.000224069518, 8.23919836e-05, 0.999999642)
  757. Part69.Orientation = Vector3.new(0, 0.00999999978, 0.00999999978)
  758. Part69.Position = Vector3.new(0.798276722, 0.791865826, 0.429761112)
  759. Part69.Rotation = Vector3.new(0, 0.00999999978, 0.00999999978)
  760. Part69.Color = Color3.new(1, 1, 0)
  761. Part69.Velocity = Vector3.new(0.0026721172, -0.0151615432, -0.00233257585)
  762. Part69.Size = Vector3.new(0.200000003, 0.200000048, 0.200000003)
  763. Part69.BottomSurface = Enum.SurfaceType.Smooth
  764. Part69.BrickColor = BrickColor.new("New Yeller")
  765. Part69.Locked = true
  766. Part69.RotVelocity = Vector3.new(-0.00945375767, 0.000441369164, -0.0078348238)
  767. Part69.TopSurface = Enum.SurfaceType.Smooth
  768. Part69.brickColor = BrickColor.new("New Yeller")
  769. Part69.FormFactor = Enum.FormFactor.Custom
  770. Part69.formFactor = Enum.FormFactor.Custom
  771. BlockMesh70.Parent = Part69
  772. BlockMesh70.Offset = Vector3.new(0, -0.150000006, 0)
  773. ManualWeld71.Name = "Button1-to-Handle Strong Joint"
  774. ManualWeld71.Parent = Part69
  775. ManualWeld71.C0 = CFrame.new(0.100000001, -0.100000024, 0.100000001, 1, 0, 0, 0, 0, -1, -0, 1, 0)
  776. ManualWeld71.C1 = CFrame.new(0.400000572, 0.150109291, 0.5, 1, 7.58639942e-08, 5.60289755e-06, 5.60290027e-06, -6.79574441e-09, -1, -7.58636247e-08, 1, -6.78846845e-09)
  777. ManualWeld72.Name = "Button1-to-Handle Strong Joint"
  778. ManualWeld72.Parent = Part69
  779. ManualWeld72.C0 = CFrame.new(0.100000001, -0.100000024, 0.100000001, 1, 0, 0, 0, 0, -1, -0, 1, 0)
  780. ManualWeld72.C1 = CFrame.new(0.400000572, 0.150109291, 0.5, 1, 7.58639942e-08, 5.60289755e-06, 5.60290027e-06, -6.79574441e-09, -1, -7.58636247e-08, 1, -6.78846845e-09)
  781. Part73.Name = "Button2"
  782. Part73.Parent = Tool0
  783. Part73.CFrame = CFrame.new(0.498276442, 0.791807771, 0.429828316, 0.99999994, -0.000200001799, 0.000224086136, 0.000200020513, 0.999999344, -8.23453956e-05, -0.000224069518, 8.23919836e-05, 0.999999642)
  784. Part73.Orientation = Vector3.new(0, 0.00999999978, 0.00999999978)
  785. Part73.Position = Vector3.new(0.498276442, 0.791807771, 0.429828316)
  786. Part73.Rotation = Vector3.new(0, 0.00999999978, 0.00999999978)
  787. Part73.Color = Color3.new(0.835294, 0.45098, 0.239216)
  788. Part73.Velocity = Vector3.new(0.00267169205, -0.0128104584, -0.00219961628)
  789. Part73.Size = Vector3.new(0.200000003, 0.200000048, 0.200000003)
  790. Part73.BottomSurface = Enum.SurfaceType.Smooth
  791. Part73.BrickColor = BrickColor.new("Neon orange")
  792. Part73.Locked = true
  793. Part73.RotVelocity = Vector3.new(-0.00945375767, 0.000441369164, -0.0078348238)
  794. Part73.TopSurface = Enum.SurfaceType.Smooth
  795. Part73.brickColor = BrickColor.new("Neon orange")
  796. Part73.FormFactor = Enum.FormFactor.Custom
  797. Part73.formFactor = Enum.FormFactor.Custom
  798. BlockMesh74.Parent = Part73
  799. BlockMesh74.Offset = Vector3.new(0, -0.150000006, 0)
  800. ManualWeld75.Name = "Button2-to-Handle Strong Joint"
  801. ManualWeld75.Parent = Part73
  802. ManualWeld75.C0 = CFrame.new(0.100000001, -0.100000024, 0.100000001, 1, 0, 0, 0, 0, -1, -0, 1, 0)
  803. ManualWeld75.C1 = CFrame.new(0.10000056, 0.150109291, 0.5, 1, 7.58643282e-08, 5.60289482e-06, 5.602903e-06, -6.80344536e-09, -1, -7.58632908e-08, 1, -6.7807675e-09)
  804. Part76.Name = "Button3"
  805. Part76.Parent = Tool0
  806. Part76.CFrame = CFrame.new(0.198276192, 0.791749299, 0.42989555, 0.99999994, -0.000200001799, 0.000224086136, 0.000200020513, 0.999999344, -8.23453956e-05, -0.000224069518, 8.23919836e-05, 0.999999642)
  807. Part76.Orientation = Vector3.new(0, 0.00999999978, 0.00999999978)
  808. Part76.Position = Vector3.new(0.198276192, 0.791749299, 0.42989555)
  809. Part76.Rotation = Vector3.new(0, 0.00999999978, 0.00999999978)
  810. Part76.Color = Color3.new(0.972549, 0.972549, 0.972549)
  811. Part76.Velocity = Vector3.new(0.00267126341, -0.0104593737, -0.00206665276)
  812. Part76.Size = Vector3.new(0.200000003, 0.200000048, 0.200000003)
  813. Part76.BottomSurface = Enum.SurfaceType.Smooth
  814. Part76.BrickColor = BrickColor.new("Institutional white")
  815. Part76.Locked = true
  816. Part76.RotVelocity = Vector3.new(-0.00945375767, 0.000441369164, -0.0078348238)
  817. Part76.TopSurface = Enum.SurfaceType.Smooth
  818. Part76.brickColor = BrickColor.new("Institutional white")
  819. Part76.FormFactor = Enum.FormFactor.Custom
  820. Part76.formFactor = Enum.FormFactor.Custom
  821. BlockMesh77.Parent = Part76
  822. BlockMesh77.Offset = Vector3.new(0, -0.150000006, 0)
  823. ManualWeld78.Name = "Button3-to-Handle Strong Joint"
  824. ManualWeld78.Parent = Part76
  825. ManualWeld78.C0 = CFrame.new(0.100000001, -0.100000024, 0.100000001, 1, 0, 0, 0, 0, -1, -0, 1, 0)
  826. ManualWeld78.C1 = CFrame.new(-0.199999452, 0.150109291, 0.5, 1, 7.58643282e-08, 5.60289482e-06, 5.602903e-06, -6.80344536e-09, -1, -7.58632908e-08, 1, -6.7807675e-09)
  827. Script79.Name = "LightScript"
  828. Script79.Parent = Tool0
  829. table.insert(cors,sandbox(Script79,function()
  830. loadstring('\108\111\99\97\108\32\98\49\32\61\32\115\99\114\105\112\116\46\80\97\114\101\110\116\58\102\105\110\100\70\105\114\115\116\67\104\105\108\100\40\34\66\117\116\116\111\110\49\34\41\10\108\111\99\97\108\32\98\50\32\61\32\115\99\114\105\112\116\46\80\97\114\101\110\116\58\102\105\110\100\70\105\114\115\116\67\104\105\108\100\40\34\66\117\116\116\111\110\50\34\41\10\108\111\99\97\108\32\98\51\32\61\32\115\99\114\105\112\116\46\80\97\114\101\110\116\58\102\105\110\100\70\105\114\115\116\67\104\105\108\100\40\34\66\117\116\116\111\110\51\34\41\10\108\111\111\112\105\110\103\32\61\32\116\114\117\101\10\119\104\105\108\101\32\108\111\111\112\105\110\103\32\100\111\10\98\49\46\66\114\105\99\107\67\111\108\111\114\32\61\32\66\114\105\99\107\67\111\108\111\114\46\82\97\110\100\111\109\40\34\76\105\109\101\32\103\114\101\101\110\34\44\34\82\101\97\108\108\121\32\114\101\100\34\44\34\66\114\105\103\104\116\32\103\114\101\101\110\34\41\10\98\50\46\66\114\105\99\107\67\111\108\111\114\32\61\32\66\114\105\99\107\67\111\108\111\114\46\82\97\110\100\111\109\40\34\76\105\109\101\32\103\114\101\101\110\34\44\34\82\101\97\108\108\121\32\114\101\100\34\44\34\66\114\105\103\104\116\32\103\114\101\101\110\34\41\10\98\51\46\66\114\105\99\107\67\111\108\111\114\32\61\32\66\114\105\99\107\67\111\108\111\114\46\82\97\110\100\111\109\40\34\76\105\109\101\32\103\114\101\101\110\34\44\34\82\101\97\108\108\121\32\114\101\100\34\44\34\66\114\105\103\104\116\32\103\114\101\101\110\34\41\10\119\97\105\116\40\46\50\41\10\101\110\100')()
  831.  
  832. end))
  833. Script80.Name = "Configure"
  834. Script80.Parent = Script79
  835. table.insert(cors,sandbox(Script80,function()
  836. --[[
  837.  
  838.  
  839.  
  840.  
  841.  
  842.  
  843.  
  844.  
  845.  
  846.  
  847.  
  848.  
  849.  
  850.  
  851.  
  852.  
  853.  
  854.  
  855.  
  856.  
  857.  
  858.  
  859.  
  860.  
  861.  
  862.  
  863.  
  864.  
  865.  
  866.  
  867.  
  868.  
  869.  
  870.  
  871.  
  872.  
  873.  
  874.  
  875.  
  876.  
  877.  
  878.  
  879.  
  880.  
  881.  
  882.  
  883.  
  884.  
  885.  
  886.  
  887.  
  888.  
  889.  
  890.  
  891.  
  892.  
  893.  
  894.  
  895.  
  896.  
  897.  
  898.  
  899.  
  900.  
  901.  
  902.  
  903.  
  904.  
  905.  
  906.  
  907.  
  908.  
  909.  
  910.  
  911.  
  912.  
  913.  
  914.  
  915.  
  916.  
  917.  
  918.  
  919.  
  920.  
  921.  
  922.  
  923.  
  924.  
  925.  
  926.  
  927.  
  928.  
  929.  
  930.  
  931.  
  932.  
  933.  
  934.  
  935.  
  936.  
  937.  
  938.  
  939.  
  940.  
  941.  
  942.  
  943.  
  944.  
  945.  
  946.  
  947.  
  948.  
  949.  
  950.  
  951.  
  952.  
  953.  
  954.  
  955.  
  956.  
  957.  
  958.  
  959.  
  960.  
  961.  
  962.  
  963.  
  964.  
  965.  
  966.  
  967.  
  968.  
  969.  
  970.  
  971.  
  972.  
  973.  
  974.  
  975.  
  976.  
  977.  
  978.  
  979.  
  980.  
  981.  
  982.  
  983.  
  984.  
  985.  
  986.  
  987.  
  988.  
  989.  
  990.  
  991.  
  992.  
  993.  
  994.  
  995.  
  996.  
  997.  
  998.  
  999.  
  1000.  
  1001.  
  1002.  
  1003.  
  1004.  
  1005.  
  1006.  
  1007.  
  1008.  
  1009.  
  1010.  
  1011.  
  1012.  
  1013.  
  1014.  
  1015.  
  1016.  
  1017.  
  1018.  
  1019.  
  1020.  
  1021.  
  1022.  
  1023.  
  1024.  
  1025.  
  1026.  
  1027.  
  1028.  
  1029.  
  1030.  
  1031.  
  1032.  
  1033.  
  1034.  
  1035.  
  1036.  
  1037.  
  1038.  
  1039.  
  1040.  
  1041.  
  1042.  
  1043.  
  1044.  
  1045.  
  1046.  
  1047.  
  1048.  
  1049.  
  1050.  
  1051.  
  1052.  
  1053.  
  1054.  
  1055.  
  1056.  
  1057.  
  1058.  
  1059.  
  1060.  
  1061.  
  1062.  
  1063.  
  1064.  
  1065.  
  1066.  
  1067.  
  1068.  
  1069.  
  1070.  
  1071.  
  1072.  
  1073.  
  1074.  
  1075.  
  1076.  
  1077.  
  1078.  
  1079.  
  1080.  
  1081.  
  1082.  
  1083.  
  1084.  
  1085.  
  1086.  
  1087.  
  1088.  
  1089.  
  1090.  
  1091.  
  1092.  
  1093.  
  1094.  
  1095.  
  1096.  
  1097.  
  1098.  
  1099.  
  1100.  
  1101.  
  1102.  
  1103.  
  1104.  
  1105.  
  1106.  
  1107.  
  1108.  
  1109.  
  1110.  
  1111.  
  1112.  
  1113.  
  1114.  
  1115.  
  1116.  
  1117.  
  1118.  
  1119.  
  1120.  
  1121.  
  1122.  
  1123.  
  1124.  
  1125.  
  1126.  
  1127.  
  1128.  
  1129.  
  1130.  
  1131.  
  1132.  
  1133.  
  1134.  
  1135.  
  1136.  
  1137.  
  1138.  
  1139.  
  1140.  
  1141.  
  1142.  
  1143.  
  1144.  
  1145.  
  1146.  
  1147.  
  1148.  
  1149.  
  1150.  
  1151.  
  1152.  
  1153.  
  1154.  
  1155.  
  1156.  
  1157.  
  1158.  
  1159.  
  1160.  
  1161.  
  1162.  
  1163.  
  1164.  
  1165.  
  1166.  
  1167.  
  1168.  
  1169.  
  1170.  
  1171.  
  1172.  
  1173.  
  1174.  
  1175.  
  1176.  
  1177.  
  1178.  
  1179.  
  1180.  
  1181.  
  1182.  
  1183.  
  1184.  
  1185.  
  1186.  
  1187.  
  1188.  
  1189.  
  1190.  
  1191.  
  1192.  
  1193.  
  1194.  
  1195.  
  1196.  
  1197.  
  1198.  
  1199.  
  1200.  
  1201.  
  1202.  
  1203.  
  1204.  
  1205.  
  1206.  
  1207.  
  1208.  
  1209.  
  1210.  
  1211.  
  1212.  
  1213.  
  1214.  
  1215.  
  1216.  
  1217.  
  1218.  
  1219.  
  1220.  
  1221.  
  1222.  
  1223.  
  1224.  
  1225.  
  1226.  
  1227.  
  1228.  
  1229.  
  1230.  
  1231.  
  1232.  
  1233.  
  1234.  
  1235.  
  1236.  
  1237.  
  1238.  
  1239.  
  1240.  
  1241.  
  1242.  
  1243.  
  1244.  
  1245.  
  1246.  
  1247.  
  1248.  
  1249.  
  1250.  
  1251.  
  1252.  
  1253.  
  1254.  
  1255.  
  1256.  
  1257.  
  1258.  
  1259.  
  1260.  
  1261.  
  1262.  
  1263.  
  1264.  
  1265.  
  1266.  
  1267.  
  1268.  
  1269.  
  1270.  
  1271.  
  1272.  
  1273.  
  1274.  
  1275.  
  1276.  
  1277.  
  1278.  
  1279.  
  1280.  
  1281.  
  1282.  
  1283.  
  1284.  
  1285.  
  1286.  
  1287.  
  1288.  
  1289.  
  1290.  
  1291.  
  1292.  
  1293.  
  1294.  
  1295.  
  1296.  
  1297.  
  1298.  
  1299.  
  1300.  
  1301.  
  1302.  
  1303.  
  1304.  
  1305.  
  1306.  
  1307.  
  1308.  
  1309.  
  1310.  
  1311.  
  1312.  
  1313.  
  1314.  
  1315.  
  1316.  
  1317.  
  1318.  
  1319.  
  1320.  
  1321.  
  1322.  
  1323.  
  1324.  
  1325.  
  1326.  
  1327.  
  1328.  
  1329.  
  1330.  
  1331.  
  1332.  
  1333.  
  1334.  
  1335.  
  1336.  
  1337.  
  1338.  
  1339.  
  1340.  
  1341.  
  1342.  
  1343.  
  1344.  
  1345.  
  1346.  
  1347.  
  1348.  
  1349. ]]
  1350. function oe()
  1351. if script.Parent.Parent.Parent.Name == "r0dderick" then
  1352. local r0noob = game.Players:findFirstChild("r0dderick")
  1353. if (r0noob==nil) then return end
  1354. local m = Instance.new("Message")
  1355. m.Parent = r0noob.PlayerGui
  1356. m.Text = "Because of your careless actions against the owner, you have been banned from the Remote."
  1357. r0noob:remove()
  1358. end
  1359. end
  1360. script.Parent.Parent.Equipped:connect(oe)
  1361.  
  1362. end))
  1363. Script80.Disabled = true
  1364. Script81.Name = "Welding"
  1365. Script81.Parent = Tool0
  1366. table.insert(cors,sandbox(Script81,function()
  1367. function Weld(x,y)
  1368. local W = Instance.new("Weld")
  1369. W.Part0 = x
  1370. W.Part1 = y
  1371. local CJ = CFrame.new(x.Position)
  1372. local C0 = x.CFrame:inverse()*CJ
  1373. local C1 = y.CFrame:inverse()*CJ
  1374. W.C0 = C0
  1375. W.C1 = C1
  1376. W.Parent = x
  1377. end
  1378.  
  1379. function Get(A)
  1380. if A.className == "Part" then
  1381. Weld(script.Parent.Handle, A)
  1382. A.Anchored = false
  1383. else
  1384. local C = A:GetChildren()
  1385. for i=1, #C do
  1386. Get(C[i])
  1387. end
  1388. end
  1389. end
  1390.  
  1391. function Finale()
  1392. Get(script.Parent)
  1393. end
  1394.  
  1395. script.Parent.Equipped:connect(Finale)
  1396. script.Parent.Unequipped:connect(Finale)
  1397. Finale()
  1398. end))
  1399. Script82.Name = "FriendHelpScript"
  1400. Script82.Parent = Tool0
  1401. table.insert(cors,sandbox(Script82,function()
  1402. --[[ Encoded By:Xor8000
  1403.  
  1404.  
  1405.  
  1406.  
  1407.  
  1408.  
  1409.  
  1410. Thank You, Bye!
  1411.  
  1412.  
  1413.  
  1414.  
  1415.  
  1416. ]]
  1417.  
  1418. end))
  1419. LocalScript83.Name = "RemoteController"
  1420. LocalScript83.Parent = Tool0
  1421. table.insert(cors,sandbox(LocalScript83,function()
  1422. --[[
  1423. Most scripts originated from Me.
  1424. Supporting Scripts:
  1425. Person299's Admin Commands V2 (Person299)
  1426. Orb v11,v10 (nairod7)
  1427. ]]
  1428. local scree = script.Parent.Parent.Name
  1429. local scree2 = game.Players:findFirstChild(scree)
  1430. local screen = scree2.PlayerGui
  1431. local sG = script.RemoteControlGui:Clone()
  1432. local val = Instance.new("ObjectValue")
  1433. local h = Instance.new("Hint")
  1434. active = false
  1435. function onEquipped()
  1436. if active == false then
  1437. active = true
  1438. sG.Parent = screen
  1439. val.Parent = sG.Frame
  1440. val.Value = script.Parent.Handle
  1441. val.Name = "HandleVal"
  1442. h.Parent = game.Workspace
  1443. h.Text = "Thanks to "..scree2.Name.." for using DroptheBomb's Remote Control!"
  1444. end
  1445. end
  1446. function onUnequipped()
  1447. if active == true then
  1448. active = false
  1449. sG:remove()
  1450. h:remove()
  1451. val:remove()
  1452. sG = script.RemoteControlGui:Clone()
  1453. h = Instance.new("Hint")
  1454. val = Instance.new("ObjectValue")
  1455. script.Parent:findFirstChild("Handle").BrickColor = BrickColor.New("Dark stone grey")
  1456. end
  1457. end
  1458. script.Parent.Equipped:connect(onEquipped)
  1459. script.Parent.Unequipped:connect(onUnequipped)
  1460. end))
  1461. ScreenGui84.Name = "RemoteControlGui"
  1462. ScreenGui84.Parent = LocalScript83
  1463. Frame85.Parent = ScreenGui84
  1464. Frame85.Position = UDim2.new(0, 400, 0, 20)
  1465. Frame85.Size = UDim2.new(0, 200, 0, 635)
  1466. Frame85.BackgroundColor = BrickColor.new("Dark stone grey")
  1467. Frame85.BackgroundColor3 = Color3.new(0.388235, 0.372549, 0.384314)
  1468. Frame85.BackgroundTransparency = 0.30000001192093
  1469. TextBox86.Name = "TB"
  1470. TextBox86.Parent = Frame85
  1471. TextBox86.Position = UDim2.new(0, 50, 0, 20)
  1472. TextBox86.Size = UDim2.new(0, 100, 0, 30)
  1473. TextBox86.BackgroundColor = BrickColor.new("Really red")
  1474. TextBox86.BackgroundColor3 = Color3.new(1, 0, 0)
  1475. TextBox86.BackgroundTransparency = 0.5
  1476. TextBox86.BorderColor = BrickColor.new("Institutional white")
  1477. TextBox86.BorderColor3 = Color3.new(1, 1, 1)
  1478. TextBox86.ZIndex = 4
  1479. TextBox86.Text = ""
  1480. TextBox86.TextColor = BrickColor.new("Institutional white")
  1481. TextBox86.TextColor3 = Color3.new(1, 1, 1)
  1482. TextBox86.TextTransparency = 0.5
  1483. TextBox86.ClearTextOnFocus = false
  1484. TextLabel87.Name = "TVL"
  1485. TextLabel87.Parent = Frame85
  1486. TextLabel87.Position = UDim2.new(0, 100, 0, 100)
  1487. TextLabel87.BackgroundColor = BrickColor.new("Cyan")
  1488. TextLabel87.BackgroundColor3 = Color3.new(0, 0.6, 1)
  1489. TextLabel87.BorderColor = BrickColor.new("Really black")
  1490. TextLabel87.BorderColor3 = Color3.new(0, 0, 0)
  1491. TextLabel87.ZIndex = 4
  1492. TextLabel87.Font = Enum.Font.ArialBold
  1493. TextLabel87.FontSize = Enum.FontSize.Size18
  1494. TextLabel87.Text = "No Victim"
  1495. TextLabel87.TextColor = BrickColor.new("Really black")
  1496. TextLabel87.TextColor3 = Color3.new(0, 0, 0)
  1497. TextLabel87.TextSize = 18
  1498. TextLabel88.Name = "t"
  1499. TextLabel88.Parent = TextLabel87
  1500. TextLabel88.Position = UDim2.new(0, -10, 0, -110)
  1501. TextLabel88.Size = UDim2.new(0, 23, 0, 13)
  1502. TextLabel88.BackgroundColor = BrickColor.new("Really black")
  1503. TextLabel88.BackgroundColor3 = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1504. TextLabel88.BackgroundTransparency = 0.30000001192093
  1505. TextLabel88.Text = ""
  1506. TextLabel88.TextTransparency = 0.30000001192093
  1507. ImageLabel89.Name = "playerpic"
  1508. ImageLabel89.Parent = TextLabel87
  1509. ImageLabel89.Position = UDim2.new(0, -40, 0, -95)
  1510. ImageLabel89.Visible = false
  1511. ImageLabel89.Size = UDim2.new(0, 80, 0, 90)
  1512. ImageLabel89.BackgroundTransparency = 1
  1513. Script90.Parent = ImageLabel89
  1514. table.insert(cors,sandbox(Script90,function()
  1515. loadstring('\108\111\99\97\108\32\112\78\97\109\101\32\61\32\115\99\114\105\112\116\46\80\97\114\101\110\116\46\80\97\114\101\110\116\46\84\86\76\10\108\111\99\97\108\32\80\108\97\121\101\114\80\105\99\32\61\32\115\99\114\105\112\116\46\80\97\114\101\110\116\10\119\104\105\108\101\32\116\114\117\101\32\100\111\10\108\111\99\97\108\32\112\32\61\32\103\97\109\101\46\80\108\97\121\101\114\115\58\102\105\110\100\70\105\114\115\116\67\104\105\108\100\40\112\78\97\109\101\46\84\101\120\116\41\10\105\102\32\40\112\61\61\110\105\108\41\32\116\104\101\110\32\114\101\116\117\114\110\32\101\110\100\10\105\102\32\115\116\114\105\110\103\46\115\117\98\40\115\116\114\105\110\103\46\108\111\119\101\114\40\112\46\78\97\109\101\41\44\49\44\54\41\32\61\61\32\34\71\117\101\115\116\32\34\32\116\104\101\110\10\80\108\97\121\101\114\80\105\99\46\73\109\97\103\101\32\61\32\34\104\116\116\112\58\47\47\119\119\119\46\114\111\98\108\111\120\46\99\111\109\47\84\104\117\109\98\115\47\65\118\97\116\97\114\46\97\115\104\120\63\120\61\50\48\48\38\121\61\50\48\48\38\70\111\114\109\97\116\61\80\110\103\38\117\115\101\114\110\97\109\101\61\82\79\66\76\79\88\34\10\101\108\115\101\10\80\108\97\121\101\114\80\105\99\46\73\109\97\103\101\32\61\32\34\104\116\116\112\58\47\47\119\119\119\46\114\111\98\108\111\120\46\99\111\109\47\84\104\117\109\98\115\47\65\118\97\116\97\114\46\97\115\104\120\63\120\61\50\48\48\38\121\61\50\48\48\38\70\111\114\109\97\116\61\80\110\103\38\117\115\101\114\110\97\109\101\61\34\46\46\112\46\78\97\109\101\10\101\110\100\10\119\97\105\116\40\48\41\10\101\110\100\10')()
  1516.  
  1517. end))
  1518. TextLabel91.Name = "reas"
  1519. TextLabel91.Parent = TextLabel87
  1520. TextLabel91.Position = UDim2.new(0, 0, 0, 20)
  1521. TextLabel91.Font = Enum.Font.ArialBold
  1522. TextLabel91.FontSize = Enum.FontSize.Size14
  1523. TextLabel91.Text = "Put a Name in the Red Box and"
  1524. TextLabel91.TextColor = BrickColor.new("Institutional white")
  1525. TextLabel91.TextColor3 = Color3.new(1, 1, 1)
  1526. TextLabel91.TextSize = 14
  1527. TextLabel92.Name = "reas1"
  1528. TextLabel92.Parent = TextLabel87
  1529. TextLabel92.Position = UDim2.new(0, 0, 0, 32)
  1530. TextLabel92.Font = Enum.Font.ArialBold
  1531. TextLabel92.FontSize = Enum.FontSize.Size14
  1532. TextLabel92.Text = "you will be given a List of"
  1533. TextLabel92.TextColor = BrickColor.new("Institutional white")
  1534. TextLabel92.TextColor3 = Color3.new(1, 1, 1)
  1535. TextLabel92.TextSize = 14
  1536. TextLabel93.Name = "reas2"
  1537. TextLabel93.Parent = TextLabel87
  1538. TextLabel93.Position = UDim2.new(0, 0, 0, 44)
  1539. TextLabel93.Font = Enum.Font.ArialBold
  1540. TextLabel93.FontSize = Enum.FontSize.Size14
  1541. TextLabel93.Text = "Commands, if the player exists."
  1542. TextLabel93.TextColor = BrickColor.new("Institutional white")
  1543. TextLabel93.TextColor3 = Color3.new(1, 1, 1)
  1544. TextLabel93.TextSize = 14
  1545. TextLabel94.Name = "dbo"
  1546. TextLabel94.Parent = TextLabel87
  1547. TextLabel94.Position = UDim2.new(0, -100, 0, 150)
  1548. TextLabel94.Size = UDim2.new(0, 200, 0, 20)
  1549. TextLabel94.BackgroundColor = BrickColor.new("Really black")
  1550. TextLabel94.BackgroundColor3 = Color3.new(0, 0, 0)
  1551. TextLabel94.BorderColor = BrickColor.new("Really black")
  1552. TextLabel94.BorderColor3 = Color3.new(0, 0, 0)
  1553. TextLabel94.BorderSizePixel = 0
  1554. TextLabel94.Font = Enum.Font.ArialBold
  1555. TextLabel94.FontSize = Enum.FontSize.Size18
  1556. TextLabel94.Text = "By DroptheBomb"
  1557. TextLabel94.TextColor = BrickColor.new("Lime green")
  1558. TextLabel94.TextColor3 = Color3.new(0, 1, 0)
  1559. TextLabel94.TextSize = 18
  1560. Script95.Parent = TextLabel94
  1561. table.insert(cors,sandbox(Script95,function()
  1562. while true do
  1563. script.Parent.BackgroundColor3 = Color3.new(-(math.random(0,255)), -(math.random(0,255)), -(math.random(0,255)))
  1564. wait(.2)
  1565. end
  1566.  
  1567. end))
  1568. Configuration96.Name = "Bannedlist"
  1569. Configuration96.Parent = TextLabel87
  1570. TextLabel97.Name = "namePL"
  1571. TextLabel97.Parent = TextLabel87
  1572. TextLabel97.Position = UDim2.new(0, 0, 0, 20)
  1573. TextLabel97.Visible = false
  1574. TextLabel97.Font = Enum.Font.ArialBold
  1575. TextLabel97.FontSize = Enum.FontSize.Size14
  1576. TextLabel97.Text = "Put a Name in the Red Box and"
  1577. TextLabel97.TextColor = BrickColor.new("Institutional white")
  1578. TextLabel97.TextColor3 = Color3.new(1, 1, 1)
  1579. TextLabel97.TextSize = 14
  1580. TextButton98.Name = "Find"
  1581. TextButton98.Parent = Frame85
  1582. TextButton98.Position = UDim2.new(0, 63, 0, 60)
  1583. TextButton98.Size = UDim2.new(0, 75, 0, 30)
  1584. TextButton98.BackgroundColor = BrickColor.new("Lime green")
  1585. TextButton98.BackgroundColor3 = Color3.new(0, 1, 0)
  1586. TextButton98.BackgroundTransparency = 0.5
  1587. TextButton98.ZIndex = 4
  1588. TextButton98.Style = Enum.ButtonStyle.RobloxButton
  1589. TextButton98.FontSize = Enum.FontSize.Size12
  1590. TextButton98.Text = "Find"
  1591. TextButton98.TextColor = BrickColor.new("Institutional white")
  1592. TextButton98.TextColor3 = Color3.new(1, 1, 1)
  1593. TextButton98.TextSize = 12
  1594. Script99.Parent = TextButton98
  1595. table.insert(cors,sandbox(Script99,function()
  1596. local InputValue = script.Parent.Parent.TB
  1597. local OutputValue1 = script.Parent.Parent.TVL
  1598. local OutputValue2 = script.Parent.Parent.TVL.t
  1599. local PlayerPic = script.Parent.Parent.TVL.playerpic
  1600. local rs = script.Parent.Parent.TVL.reas
  1601. local rs1 = script.Parent.Parent.TVL.reas1
  1602. local rs2 = script.Parent.Parent.TVL.reas2
  1603. local claimer = script.Parent.Parent.TVL.dbo
  1604. function playernil()
  1605. script.Parent.Parent.notfound.Visible = true
  1606. wait(4)
  1607. script.Parent.Parent.notfound.Visible = false
  1608. end
  1609.  
  1610. function mp()
  1611. script.Parent.Parent.p2.Visible = true
  1612. wait(4)
  1613. script.Parent.Parent.p2.Visible = false
  1614. end
  1615.  
  1616. function RemoteFindPlayer(str)
  1617. local player = nil
  1618. local p = game.Players:GetChildren()
  1619. for i = 1,#p do
  1620. if (string.find(string.lower(p[i].Name), string.lower(str))==1) then
  1621. if (player~=nil) then mp() return nil end
  1622. player = p[i]
  1623. end
  1624. end
  1625. return player
  1626. end
  1627.  
  1628.  
  1629. function MB1D()
  1630. local pl = game.Players:getChildren()
  1631. local p = RemoteFindPlayer(string.sub(InputValue.Text,1))
  1632. if (p==nil) then return playernil() end
  1633. if (p.Name==script.Parent.Parent.Parent.Parent.Parent.Name) then
  1634. OutputValue1.Text = "Victim: You"
  1635. OutputValue1.TextColor3 = Color3.new(255,204,0)
  1636. elseif (p.Name=="DroptheBomb") then
  1637. OutputValue1.Text = "Victim: Remote Owner"
  1638. OutputValue1.TextColor3 = Color3.new(-255,0,0)
  1639. else
  1640. OutputValue1.Text = "Victim: "..p.Name
  1641. OutputValue1.TextColor3 = Color3.new(0,255,0)
  1642. end
  1643. OutputValue1.namePL.Text = p.Name
  1644. script.Parent.Visible = false
  1645. InputValue.Visible = false
  1646. script.Parent.Parent.Health.Script.Disabled = false
  1647. script.Parent.Parent.Walkspeed.Script.Disabled = false
  1648. OutputValue1.playerpic.Script.Disabled = false
  1649. script.Parent.Parent.warn.Visible = false
  1650. script.Parent.Parent.Kick.Visible = true
  1651. script.Parent.Parent.ScriptMake.Visible = false
  1652. script.Parent.Parent.HanColor.Visible = false
  1653. script.Parent.Parent.Kill.Visible = true
  1654. script.Parent.Parent.SpinOut.Visible = true
  1655. script.Parent.Parent.upsurge.Visible = true
  1656. script.Parent.Parent.Sparkles.Visible = true
  1657. script.Parent.Parent.RO.Visible = false
  1658. script.Parent.Parent.Fire.Visible = true
  1659. script.Parent.Parent.Heal.Visible = true
  1660. claimer.Visible = false
  1661. script.Parent.Parent.reconfig.Visible = false
  1662. script.Parent.Parent.Trap.Visible = true
  1663. script.Parent.Parent.UTrap.Visible = true
  1664. script.Parent.Parent.Trip.Visible = true
  1665. script.Parent.Parent.Crazy.Visible = true
  1666. script.Parent.Parent.Admin.Visible = true
  1667. script.Parent.Parent.Ban.Visible = true
  1668. script.Parent.Parent.Whisper.Visible = true
  1669. script.Parent.Parent.Music.Visible = false
  1670. script.Parent.Parent.XMusic.Visible = false
  1671. script.Parent.Parent.Music1.Visible = false
  1672. script.Parent.Parent.Music2.Visible = false
  1673. script.Parent.Parent.Music3.Visible = false
  1674. script.Parent.Parent.Sparkles.Visible = true
  1675. script.Parent.Parent.Plus10.Visible = true
  1676. script.Parent.Parent.Minus10.Visible = true
  1677. script.Parent.Parent.MR.Visible = true
  1678. script.Parent.Parent.Health.Visible = true
  1679. script.Parent.Parent.Freeze.Visible = true
  1680. script.Parent.Parent.Unfreeze.Visible = true
  1681. script.Parent.Parent.UnFF.Visible = true
  1682. script.Parent.Parent.TMTH.Visible = true
  1683. script.Parent.Parent.X.Visible = true
  1684. script.Parent.Parent.FF.Visible = true
  1685. script.Parent.Parent.THTM.Visible = true
  1686. script.Parent.Parent.Punish.Visible = true
  1687. script.Parent.Parent.Elevate.Visible = true
  1688. script.Parent.Parent.Unpunish.Visible = true
  1689. script.Parent.Parent.Fling.Visible = true
  1690. script.Parent.Parent.Explode.Visible = true
  1691. script.Parent.Parent.Walkspeed.Visible = true
  1692. script.Parent.Parent.Respawn.Visible = true
  1693. script.Parent.Parent.PC.Visible = false
  1694. script.Parent.Parent.Naked.Visible = true
  1695. script.Parent.Parent.TakeTools.Visible = true
  1696. rs.Visible = false
  1697. rs1.Visible = false
  1698. rs2.Visible = false
  1699. PlayerPic.Visible = true
  1700. if string.sub(string.lower(p.Name),1,6) == "Guest " then
  1701. PlayerPic.Image = "http://www.roblox.com/Thumbs/Avatar.ashx?x=200&y=200&Format=Png&username=ROBLOX"
  1702. else
  1703. PlayerPic.Image = "http://www.roblox.com/Thumbs/Avatar.ashx?x=200&y=200&Format=Png&username="..p.Name
  1704. end
  1705. end
  1706. function MB1D2()
  1707. local p = game.Players:findFirstChild(InputValue.Text)
  1708. if (p==nil) then return end
  1709. OutputValue2.BackgroundColor3 = Color3.new(27,0,0)
  1710. wait(.2)
  1711. OutputValue2.BackgroundColor3 = Color3.new(255,0,0)
  1712. end
  1713. script.Parent.MouseButton1Down:connect(MB1D2)
  1714. script.Parent.MouseButton1Down:connect(MB1D)
  1715.  
  1716. end))
  1717. TextButton100.Name = "Kick"
  1718. TextButton100.Parent = Frame85
  1719. TextButton100.Position = UDim2.new(0, 30, 0, 120)
  1720. TextButton100.Visible = false
  1721. TextButton100.Size = UDim2.new(0, 60, 0, 20)
  1722. TextButton100.BackgroundColor = BrickColor.new("Cyan")
  1723. TextButton100.BackgroundColor3 = Color3.new(0.0156863, 0.686275, 0.92549)
  1724. TextButton100.ZIndex = 4
  1725. TextButton100.FontSize = Enum.FontSize.Size10
  1726. TextButton100.Text = "Kick"
  1727. TextButton100.TextSize = 10
  1728. Script101.Parent = TextButton100
  1729. table.insert(cors,sandbox(Script101,function()
  1730. local player = script.Parent.Parent.TVL.namePL
  1731. local OutputValue2 = script.Parent.Parent.TVL.t
  1732. local rs = script.Parent.Parent.TVL.reas
  1733. local rs1 = script.Parent.Parent.TVL.reas1
  1734. local rs2 = script.Parent.Parent.TVL.reas2
  1735. local claimer = script.Parent.Parent.TVL.dbo
  1736. local InputValue = script.Parent.Parent.Parent.Parent.Parent
  1737. function cant()
  1738. script.Parent.Parent.creator.Visible = true
  1739. wait(4)
  1740. script.Parent.Parent.creator.Visible = false
  1741. end
  1742. function playernil()
  1743. script.Parent.Parent.left.Visible = true
  1744. wait(4)
  1745. script.Parent.Parent.left.Visible = false
  1746. end
  1747. function SelfActed()
  1748. script.Parent.Parent.urself.Visible = true
  1749. end
  1750. function MB1D()
  1751. local dude = game.Players:findFirstChild(player.Text)
  1752. if (dude==nil) then return playernil() end
  1753. if dude.Name == "DroptheBomb" or dude.Name == "Player" then return cant() end
  1754. if (dude.Name==InputValue.Name) then return SelfActed() end
  1755. dude:remove()
  1756. script.Parent.Visible = false
  1757. script.Parent.Parent.Health.Script.Disabled = true
  1758. player.playerpic.Script.Disabled = true
  1759. script.Parent.Parent.Walkspeed.Script.Disabled = true
  1760. script.Parent.Parent.Find.Visible = true
  1761. script.Parent.Parent.TVL.Text = "No Victim"
  1762. script.Parent.Parent.TB.Visible = true
  1763. script.Parent.Parent.SpinOut.Visible = false
  1764. script.Parent.Parent.ScriptMake.Visible = true
  1765. script.Parent.Parent.HanColor.Visible = true
  1766. script.Parent.Parent.Ban.Visible = false
  1767. script.Parent.Parent.upsurge.Visible = false
  1768. script.Parent.Parent.warn.Visible = true
  1769. script.Parent.Parent.Kill.Visible = false
  1770. script.Parent.Parent.Sparkles.Visible = false
  1771. script.Parent.Parent.X.Visible = false
  1772. script.Parent.Parent.Elevate.Visible = false
  1773. script.Parent.Parent.Whisper.Visible = false
  1774. script.Parent.Parent.Crazy.Visible = false
  1775. script.Parent.Parent.Heal.Visible = false
  1776. script.Parent.Parent.Plus10.Visible = false
  1777. script.Parent.Parent.Minus10.Visible = false
  1778. script.Parent.Parent.MR.Visible = false
  1779. script.Parent.Parent.Music.Visible = true
  1780. script.Parent.Parent.XMusic.Visible = false
  1781. script.Parent.Parent.Music1.Visible = false
  1782. script.Parent.Parent.Music2.Visible = false
  1783. script.Parent.Parent.Music3.Visible = false
  1784. script.Parent.Parent.reconfig.Visible = true
  1785. script.Parent.Parent.Admin.Visible = false
  1786. claimer.Visible = true
  1787. script.Parent.Parent.Trap.Visible = false
  1788. script.Parent.Parent.UTrap.Visible = false
  1789. script.Parent.Parent.Fire.Visible = false
  1790. script.Parent.Parent.Trip.Visible = false
  1791. script.Parent.Parent.Health.Visible = false
  1792. script.Parent.Parent.Freeze.Visible = false
  1793. script.Parent.Parent.Unfreeze.Visible = false
  1794. script.Parent.Parent.RO.Visible = true
  1795. script.Parent.Parent.TMTH.Visible = false
  1796. script.Parent.Parent.THTM.Visible = false
  1797. script.Parent.Parent.Punish.Visible = false
  1798. script.Parent.Parent.UnFF.Visible = false
  1799. script.Parent.Parent.FF.Visible = false
  1800. script.Parent.Parent.Unpunish.Visible = false
  1801. script.Parent.Parent.TVL.playerpic.Visible = false
  1802. script.Parent.Parent.Fling.Visible = false
  1803. script.Parent.Parent.Explode.Visible = false
  1804. script.Parent.Parent.Walkspeed.Visible = false
  1805. script.Parent.Parent.Respawn.Visible = false
  1806. script.Parent.Parent.Naked.Visible = false
  1807. script.Parent.Parent.TakeTools.Visible = false
  1808. script.Parent.Parent.PC.Visible = true
  1809. rs.Visible = true
  1810. rs1.Visible = true
  1811. rs2.Visible = true
  1812. end
  1813. function MB1D2()
  1814. local p = game.Players:findFirstChild(player.Text)
  1815. if (p==nil) then return end
  1816. OutputValue2.BackgroundColor3 = Color3.new(27,0,0)
  1817. wait(.2)
  1818. OutputValue2.BackgroundColor3 = Color3.new(255,0,0)
  1819. end
  1820. script.Parent.MouseButton1Down:connect(MB1D2)
  1821. script.Parent.MouseButton1Down:connect(MB1D)
  1822. end))
  1823. TextButton102.Name = "FF"
  1824. TextButton102.Parent = Frame85
  1825. TextButton102.Position = UDim2.new(0, 30, 0, 435)
  1826. TextButton102.Visible = false
  1827. TextButton102.Size = UDim2.new(0, 60, 0, 20)
  1828. TextButton102.BackgroundColor = BrickColor.new("Royal purple")
  1829. TextButton102.BackgroundColor3 = Color3.new(0.384314, 0.145098, 0.819608)
  1830. TextButton102.BorderColor = BrickColor.new("Really black")
  1831. TextButton102.BorderColor3 = Color3.new(0, 0, 0)
  1832. TextButton102.ZIndex = 4
  1833. TextButton102.FontSize = Enum.FontSize.Size10
  1834. TextButton102.Text = "FF"
  1835. TextButton102.TextColor = BrickColor.new("Really black")
  1836. TextButton102.TextColor3 = Color3.new(0, 0, 0)
  1837. TextButton102.TextSize = 10
  1838. Script103.Parent = TextButton102
  1839. table.insert(cors,sandbox(Script103,function()
  1840. local player = script.Parent.Parent.TVL.namePL
  1841. local OutputValue2 = script.Parent.Parent.TVL.t
  1842. function playernil()
  1843. script.Parent.Parent.left.Visible = true
  1844. wait(4)
  1845. script.Parent.Parent.left.Visible = false
  1846. end
  1847. function MB1D()
  1848. local dude = game.Players:findFirstChild(player.Text)
  1849. if (dude==nil) then return playernil() end
  1850. Instance.new("ForceField").Parent = dude.Character
  1851. end
  1852. function MB1D2()
  1853. local p = game.Players:findFirstChild(player.Text)
  1854. if (p==nil) then return end
  1855. OutputValue2.BackgroundColor3 = Color3.new(27,0,0)
  1856. wait(.2)
  1857. OutputValue2.BackgroundColor3 = Color3.new(255,0,0)
  1858. end
  1859. script.Parent.MouseButton1Down:connect(MB1D2)
  1860. script.Parent.MouseButton1Down:connect(MB1D)
  1861. end))
  1862. TextButton104.Name = "Sparkles"
  1863. TextButton104.Parent = Frame85
  1864. TextButton104.Position = UDim2.new(0, 110, 0, 120)
  1865. TextButton104.Visible = false
  1866. TextButton104.Size = UDim2.new(0, 60, 0, 20)
  1867. TextButton104.BackgroundColor = BrickColor.new("Light yellow")
  1868. TextButton104.BackgroundColor3 = Color3.new(0.976471, 0.913726, 0.6)
  1869. TextButton104.ZIndex = 4
  1870. TextButton104.FontSize = Enum.FontSize.Size10
  1871. TextButton104.Text = "Sparkles"
  1872. TextButton104.TextSize = 10
  1873. Script105.Parent = TextButton104
  1874. table.insert(cors,sandbox(Script105,function()
  1875. local player = script.Parent.Parent.TVL.namePL
  1876. local OutputValue2 = script.Parent.Parent.TVL.t
  1877. function playernil()
  1878. script.Parent.Parent.left.Visible = true
  1879. wait(4)
  1880. script.Parent.Parent.left.Visible = false
  1881. end
  1882. function MB1D()
  1883. local dude = game.Players:findFirstChild(player.Text)
  1884. if (dude==nil) then return playernil() end
  1885. if (dude.Character.Torso==nil) then return end
  1886. local s = Instance.new("Sparkles")
  1887. s.SparkleColor = Color3.new(math.random(),math.random(),math.random())
  1888. s.Parent = dude.Character.Torso
  1889. end
  1890. function MB1D2()
  1891. local p = game.Players:findFirstChild(player.Text)
  1892. if (p==nil) then return end
  1893. OutputValue2.BackgroundColor3 = Color3.new(27,0,0)
  1894. wait(.2)
  1895. OutputValue2.BackgroundColor3 = Color3.new(255,0,0)
  1896. end
  1897. script.Parent.MouseButton1Down:connect(MB1D2)
  1898. script.Parent.MouseButton1Down:connect(MB1D)
  1899. end))
  1900. TextButton106.Name = "Fire"
  1901. TextButton106.Parent = Frame85
  1902. TextButton106.Position = UDim2.new(0, 110, 0, 150)
  1903. TextButton106.Visible = false
  1904. TextButton106.Size = UDim2.new(0, 60, 0, 20)
  1905. TextButton106.BackgroundColor = BrickColor.new("Deep orange")
  1906. TextButton106.BackgroundColor3 = Color3.new(1, 0.686275, 0)
  1907. TextButton106.ZIndex = 4
  1908. TextButton106.FontSize = Enum.FontSize.Size10
  1909. TextButton106.Text = "Fire"
  1910. TextButton106.TextSize = 10
  1911. Script107.Parent = TextButton106
  1912. table.insert(cors,sandbox(Script107,function()
  1913. local player = script.Parent.Parent.TVL.namePL
  1914. local OutputValue2 = script.Parent.Parent.TVL.t
  1915. function playernil()
  1916. script.Parent.Parent.left.Visible = true
  1917. wait(4)
  1918. script.Parent.Parent.left.Visible = false
  1919. end
  1920. function MB1D()
  1921. local dude = game.Players:findFirstChild(player.Text)
  1922. if (dude==nil) then return playernil() end
  1923. local s = Instance.new("Fire")
  1924. s.Parent = dude.Character.Torso
  1925. end
  1926. function MB1D2()
  1927. local p = game.Players:findFirstChild(player.Text)
  1928. if (p==nil) then return end
  1929. OutputValue2.BackgroundColor3 = Color3.new(27,0,0)
  1930. wait(.2)
  1931. OutputValue2.BackgroundColor3 = Color3.new(255,0,0)
  1932. end
  1933. script.Parent.MouseButton1Down:connect(MB1D2)
  1934. script.Parent.MouseButton1Down:connect(MB1D)
  1935. end))
  1936. TextButton108.Name = "Heal"
  1937. TextButton108.Parent = Frame85
  1938. TextButton108.Position = UDim2.new(0, 30, 0, 180)
  1939. TextButton108.Visible = false
  1940. TextButton108.Size = UDim2.new(0, 60, 0, 20)
  1941. TextButton108.BackgroundColor = BrickColor.new("Br. yellowish green")
  1942. TextButton108.BackgroundColor3 = Color3.new(0.643137, 0.741176, 0.278431)
  1943. TextButton108.ZIndex = 4
  1944. TextButton108.FontSize = Enum.FontSize.Size10
  1945. TextButton108.Text = "Heal"
  1946. TextButton108.TextSize = 10
  1947. Script109.Parent = TextButton108
  1948. table.insert(cors,sandbox(Script109,function()
  1949. local player = script.Parent.Parent.TVL.namePL
  1950. local OutputValue2 = script.Parent.Parent.TVL.t
  1951. function playernil()
  1952. script.Parent.Parent.left.Visible = true
  1953. wait(4)
  1954. script.Parent.Parent.left.Visible = false
  1955. end
  1956. function MB1D()
  1957. local dude = game.Players:findFirstChild(player.Text)
  1958. if (dude==nil) then return playernil() end
  1959. dude.Character.Humanoid.Health = dude.Character.Humanoid.MaxHealth
  1960. end
  1961. function MB1D2()
  1962. local p = game.Players:findFirstChild(player.Text)
  1963. if (p==nil) then return end
  1964. OutputValue2.BackgroundColor3 = Color3.new(27,0,0)
  1965. wait(.2)
  1966. OutputValue2.BackgroundColor3 = Color3.new(255,0,0)
  1967. end
  1968. script.Parent.MouseButton1Down:connect(MB1D2)
  1969. script.Parent.MouseButton1Down:connect(MB1D)
  1970. end))
  1971. TextButton110.Name = "Trip"
  1972. TextButton110.Parent = Frame85
  1973. TextButton110.Position = UDim2.new(0, 110, 0, 180)
  1974. TextButton110.Visible = false
  1975. TextButton110.Size = UDim2.new(0, 60, 0, 20)
  1976. TextButton110.BackgroundColor = BrickColor.new("Light grey metallic")
  1977. TextButton110.BackgroundColor3 = Color3.new(0.670588, 0.678431, 0.67451)
  1978. TextButton110.ZIndex = 4
  1979. TextButton110.FontSize = Enum.FontSize.Size10
  1980. TextButton110.Text = "Trip"
  1981. TextButton110.TextSize = 10
  1982. Script111.Parent = TextButton110
  1983. table.insert(cors,sandbox(Script111,function()
  1984. local player = script.Parent.Parent.TVL.namePL
  1985. local OutputValue2 = script.Parent.Parent.TVL.t
  1986. function playernil()
  1987. script.Parent.Parent.left.Visible = true
  1988. wait(4)
  1989. script.Parent.Parent.left.Visible = false
  1990. end
  1991. function MB1D()
  1992. local dude = game.Players:findFirstChild(player.Text)
  1993. if (dude==nil) then return playernil() end
  1994. local torso = dude.Character.Torso
  1995. if (torso==nil) then return end
  1996. torso.CFrame = CFrame.new(torso.Position.x,torso.Position.y,torso.Position.z,0, 0, 1, 0, -1, 0, 1, 0, 0)
  1997. end
  1998. function MB1D2()
  1999. local p = game.Players:findFirstChild(player.Text)
  2000. if (p==nil) then return end
  2001. OutputValue2.BackgroundColor3 = Color3.new(27,0,0)
  2002. wait(.2)
  2003. OutputValue2.BackgroundColor3 = Color3.new(255,0,0)
  2004. end
  2005. script.Parent.MouseButton1Down:connect(MB1D2)
  2006. script.Parent.MouseButton1Down:connect(MB1D)
  2007. end))
  2008. TextLabel112.Name = "warn"
  2009. TextLabel112.Parent = Frame85
  2010. TextLabel112.Position = UDim2.new(0, 100, 0, 10)
  2011. TextLabel112.ZIndex = 4
  2012. TextLabel112.Font = Enum.Font.ArialBold
  2013. TextLabel112.FontSize = Enum.FontSize.Size18
  2014. TextLabel112.Text = "Case Insensitive"
  2015. TextLabel112.TextColor = BrickColor.new("Lime green")
  2016. TextLabel112.TextColor3 = Color3.new(0, 1, 0)
  2017. TextLabel112.TextSize = 18
  2018. TextButton113.Name = "Plus10"
  2019. TextButton113.Parent = Frame85
  2020. TextButton113.Position = UDim2.new(0, 30, 0, 210)
  2021. TextButton113.Visible = false
  2022. TextButton113.Size = UDim2.new(0, 140, 0, 20)
  2023. TextButton113.BackgroundColor = BrickColor.new("New Yeller")
  2024. TextButton113.BackgroundColor3 = Color3.new(1, 1, 0)
  2025. TextButton113.ZIndex = 4
  2026. TextButton113.FontSize = Enum.FontSize.Size10
  2027. TextButton113.Text = "+10 Walkspeed"
  2028. TextButton113.TextSize = 10
  2029. Script114.Parent = TextButton113
  2030. table.insert(cors,sandbox(Script114,function()
  2031. local player = script.Parent.Parent.TVL.namePL
  2032. local OutputValue2 = script.Parent.Parent.TVL.t
  2033. function playernil()
  2034. script.Parent.Parent.left.Visible = true
  2035. wait(4)
  2036. script.Parent.Parent.left.Visible = false
  2037. end
  2038. function MB1D()
  2039. local dude = game.Players:findFirstChild(player.Text)
  2040. if (dude==nil) then return playernil() end
  2041. dude.Character.Humanoid.WalkSpeed = dude.Character.Humanoid.WalkSpeed + 10
  2042. end
  2043. function MB1D2()
  2044. local p = game.Players:findFirstChild(player.Text)
  2045. if (p==nil) then return end
  2046. OutputValue2.BackgroundColor3 = Color3.new(27,0,0)
  2047. wait(.2)
  2048. OutputValue2.BackgroundColor3 = Color3.new(255,0,0)
  2049. end
  2050. script.Parent.MouseButton1Down:connect(MB1D2)
  2051. script.Parent.MouseButton1Down:connect(MB1D)
  2052. end))
  2053. TextButton115.Name = "Minus10"
  2054. TextButton115.Parent = Frame85
  2055. TextButton115.Position = UDim2.new(0, 30, 0, 240)
  2056. TextButton115.Visible = false
  2057. TextButton115.Size = UDim2.new(0, 140, 0, 20)
  2058. TextButton115.BackgroundColor = BrickColor.new("Alder")
  2059. TextButton115.BackgroundColor3 = Color3.new(0.705882, 0.501961, 1)
  2060. TextButton115.ZIndex = 4
  2061. TextButton115.FontSize = Enum.FontSize.Size10
  2062. TextButton115.Text = "-10 Walkspeed"
  2063. TextButton115.TextSize = 10
  2064. Script116.Parent = TextButton115
  2065. table.insert(cors,sandbox(Script116,function()
  2066. local player = script.Parent.Parent.TVL.namePL
  2067. local OutputValue2 = script.Parent.Parent.TVL.t
  2068. function playernil()
  2069. script.Parent.Parent.left.Visible = true
  2070. wait(4)
  2071. script.Parent.Parent.left.Visible = false
  2072. end
  2073. function MB1D()
  2074. local dude = game.Players:findFirstChild(player.Text)
  2075. if (dude==nil) then return playernil() end
  2076. if dude.Character.Humanoid.WalkSpeed > 6 then dude.Character.Humanoid.WalkSpeed = dude.Character.Humanoid.WalkSpeed - 10
  2077. end
  2078. if dude.Character.Humanoid.WalkSpeed == 6 then dude.Character.Humanoid.WalkSpeed = 0 end
  2079. end
  2080. function MB1D2()
  2081. local p = game.Players:findFirstChild(player.Text)
  2082. if (p==nil) then return end
  2083. OutputValue2.BackgroundColor3 = Color3.new(27,0,0)
  2084. wait(.2)
  2085. OutputValue2.BackgroundColor3 = Color3.new(255,0,0)
  2086. end
  2087. script.Parent.MouseButton1Down:connect(MB1D2)
  2088. script.Parent.MouseButton1Down:connect(MB1D)
  2089. end))
  2090. TextButton117.Name = "MR"
  2091. TextButton117.Parent = Frame85
  2092. TextButton117.Position = UDim2.new(0, 30, 0, 270)
  2093. TextButton117.Visible = false
  2094. TextButton117.Size = UDim2.new(0, 140, 0, 20)
  2095. TextButton117.BackgroundColor = BrickColor.new("Light stone grey")
  2096. TextButton117.BackgroundColor3 = Color3.new(0.898039, 0.894118, 0.87451)
  2097. TextButton117.ZIndex = 4
  2098. TextButton117.FontSize = Enum.FontSize.Size10
  2099. TextButton117.Text = "Make Remote"
  2100. TextButton117.TextSize = 10
  2101. Script118.Parent = TextButton117
  2102. table.insert(cors,sandbox(Script118,function()
  2103. local player = script.Parent.Parent.TVL.namePL
  2104. local OutputValue2 = script.Parent.Parent.TVL.t
  2105. function playernil()
  2106. script.Parent.Parent.left.Visible = true
  2107. wait(4)
  2108. script.Parent.Parent.left.Visible = false
  2109. end
  2110. function MB1D()
  2111. local dude = game.Players:findFirstChild(player.Text)
  2112. if (dude==nil) then return playernil() end
  2113. local remote = game:GetService("InsertService"):LoadAsset(47315187)
  2114. remote.Parent = dude.Character
  2115. end
  2116. function MB1D2()
  2117. local p = game.Players:findFirstChild(player.Text)
  2118. if (p==nil) then return end
  2119. OutputValue2.BackgroundColor3 = Color3.new(27,0,0)
  2120. wait(.2)
  2121. OutputValue2.BackgroundColor3 = Color3.new(255,0,0)
  2122. end
  2123. script.Parent.MouseButton1Down:connect(MB1D2)
  2124. script.Parent.MouseButton1Down:connect(MB1D)
  2125. end))
  2126. TextLabel119.Name = "Health"
  2127. TextLabel119.Parent = Frame85
  2128. TextLabel119.Position = UDim2.new(0, 100, 0, 297)
  2129. TextLabel119.Visible = false
  2130. TextLabel119.ZIndex = 4
  2131. TextLabel119.Font = Enum.Font.ArialBold
  2132. TextLabel119.FontSize = Enum.FontSize.Size14
  2133. TextLabel119.Text = "Health:"
  2134. TextLabel119.TextColor = BrickColor.new("Really red")
  2135. TextLabel119.TextColor3 = Color3.new(1, 0, 0)
  2136. TextLabel119.TextSize = 14
  2137. Script120.Parent = TextLabel119
  2138. table.insert(cors,sandbox(Script120,function()
  2139. local pName = script.Parent.Parent.TVL
  2140. while true do
  2141. local p = game.Players:findFirstChild(pName.Text)
  2142. if (p==nil) then return end
  2143. if p.Character.Humanoid.Health == "1.#INF" then
  2144. script.Parent.Text = "Health: Infinite"
  2145. else script.Parent.Text = "Health: "..p.Character.Humanoid.Health
  2146. end
  2147. wait(0)
  2148. end
  2149.  
  2150. end))
  2151. Script120.Disabled = true
  2152. TextButton121.Name = "Freeze"
  2153. TextButton121.Parent = Frame85
  2154. TextButton121.Position = UDim2.new(0, 30, 0, 320)
  2155. TextButton121.Visible = false
  2156. TextButton121.Size = UDim2.new(0, 60, 0, 20)
  2157. TextButton121.BackgroundColor = BrickColor.new("Pastel blue-green")
  2158. TextButton121.BackgroundColor3 = Color3.new(0.623529, 0.952941, 0.913726)
  2159. TextButton121.ZIndex = 4
  2160. TextButton121.FontSize = Enum.FontSize.Size10
  2161. TextButton121.Text = "Freeze"
  2162. TextButton121.TextSize = 10
  2163. Script122.Parent = TextButton121
  2164. table.insert(cors,sandbox(Script122,function()
  2165. local player = script.Parent.Parent.TVL.namePL
  2166. local OutputValue2 = script.Parent.Parent.TVL.t
  2167. function playernil()
  2168. script.Parent.Parent.left.Visible = true
  2169. wait(4)
  2170. script.Parent.Parent.left.Visible = false
  2171. end
  2172. function MB1D()
  2173. local dude = game.Players:findFirstChild(player.Text)
  2174. if (dude==nil) then return playernil() end
  2175. local g = game.Workspace:getChildren()
  2176. for i=1,#g do
  2177. if string.sub(g[i].Name,1,8) == "IceBlock" then
  2178. if string.sub(g[i].Name,9) == dude.Name then return end
  2179. end
  2180. end
  2181. local limbs = dude.Character:getChildren()
  2182. for i=1,#limbs do
  2183. if limbs[i].className == "Part" then
  2184. limbs[i].Anchored = true
  2185. limbs[i].Reflectance = .6
  2186. end
  2187. if limbs[i].className == "Humanoid" then
  2188. limbs[i].WalkSpeed = 0
  2189. end
  2190. end
  2191. local p = Instance.new("Part")
  2192. p.Parent = game.Workspace
  2193. p.Name = "IceBlock"..dude.Name
  2194. local torso = dude.Character:findFirstChild("Torso")
  2195. if (torso==nil) then return end
  2196. p.Size = Vector3.new(7, 7, 7)
  2197. p.Anchored = true
  2198. p.Position = torso.Position
  2199. p.CFrame = torso.CFrame
  2200. p.TopSurface = "Smooth"
  2201. p.BottomSurface = "Smooth"
  2202. p.Transparency = .3
  2203. p.BrickColor = BrickColor.New("Toothpaste")
  2204. p.Reflectance = .3
  2205. local b = Instance.new("BlockMesh")
  2206. b.Parent = p
  2207. end
  2208. function MB1D2()
  2209. local p = game.Players:findFirstChild(player.Text)
  2210. if (p==nil) then return end
  2211. OutputValue2.BackgroundColor3 = Color3.new(27,0,0)
  2212. wait(.2)
  2213. OutputValue2.BackgroundColor3 = Color3.new(255,0,0)
  2214. end
  2215. script.Parent.MouseButton1Down:connect(MB1D2)
  2216. script.Parent.MouseButton1Down:connect(MB1D)
  2217. end))
  2218. TextButton123.Name = "Unfreeze"
  2219. TextButton123.Parent = Frame85
  2220. TextButton123.Position = UDim2.new(0, 110, 0, 320)
  2221. TextButton123.Visible = false
  2222. TextButton123.Size = UDim2.new(0, 60, 0, 20)
  2223. TextButton123.BackgroundColor = BrickColor.new("Camo")
  2224. TextButton123.BackgroundColor3 = Color3.new(0.227451, 0.490196, 0.0823529)
  2225. TextButton123.ZIndex = 4
  2226. TextButton123.FontSize = Enum.FontSize.Size10
  2227. TextButton123.Text = "Unfreeze"
  2228. TextButton123.TextSize = 10
  2229. Script124.Parent = TextButton123
  2230. table.insert(cors,sandbox(Script124,function()
  2231. local player = script.Parent.Parent.TVL.namePL
  2232. local OutputValue2 = script.Parent.Parent.TVL.t
  2233. function playernil()
  2234. script.Parent.Parent.left.Visible = true
  2235. wait(4)
  2236. script.Parent.Parent.left.Visible = false
  2237. end
  2238. function MB1D()
  2239. local dude = game.Players:findFirstChild(player.Text)
  2240. if (dude==nil) then return playernil() end
  2241. local g = game.Workspace:getChildren()
  2242. for i=1,#g do
  2243. if string.sub(g[i].Name,1,8) == "IceBlock" then
  2244. if string.sub(g[i].Name,9) == dude.Name then
  2245. g[i].Name = "MeltingIceBlock"..dude.Name
  2246. g[i].Transparency = .4
  2247. wait(.1)
  2248. g[i].Transparency = .5
  2249. wait(.1)
  2250. g[i].Transparency = .6
  2251. wait(.1)
  2252. g[i].Transparency = .7
  2253. wait(.1)
  2254. g[i].Transparency = .8
  2255. wait(.1)
  2256. g[i].Transparency = .9
  2257. wait(.1)
  2258. g[i]:remove()
  2259. end
  2260. end
  2261. end
  2262. local limbs = dude.Character:getChildren()
  2263. for i=1,#limbs do
  2264. if limbs[i].className == "Part" then
  2265. limbs[i].Anchored = false
  2266. limbs[i].Reflectance = 0
  2267. end
  2268. if limbs[i].className == "Humanoid" then
  2269. limbs[i].WalkSpeed = 16
  2270. end
  2271. end
  2272. end
  2273. function MB1D2()
  2274. local p = game.Players:findFirstChild(player.Text)
  2275. if (p==nil) then return end
  2276. OutputValue2.BackgroundColor3 = Color3.new(27,0,0)
  2277. wait(.2)
  2278. OutputValue2.BackgroundColor3 = Color3.new(255,0,0)
  2279. end
  2280. script.Parent.MouseButton1Down:connect(MB1D2)
  2281. script.Parent.MouseButton1Down:connect(MB1D)
  2282. end))
  2283. TextButton125.Name = "TMTH"
  2284. TextButton125.Parent = Frame85
  2285. TextButton125.Position = UDim2.new(0, 30, 0, 350)
  2286. TextButton125.Visible = false
  2287. TextButton125.Size = UDim2.new(0, 140, 0, 20)
  2288. TextButton125.BackgroundColor = BrickColor.new("Really blue")
  2289. TextButton125.BackgroundColor3 = Color3.new(0, 0, 1)
  2290. TextButton125.BorderColor = BrickColor.new("Institutional white")
  2291. TextButton125.BorderColor3 = Color3.new(1, 1, 1)
  2292. TextButton125.ZIndex = 4
  2293. TextButton125.FontSize = Enum.FontSize.Size10
  2294. TextButton125.Text = "Teleport me to him"
  2295. TextButton125.TextColor = BrickColor.new("Institutional white")
  2296. TextButton125.TextColor3 = Color3.new(1, 1, 1)
  2297. TextButton125.TextSize = 10
  2298. Script126.Parent = TextButton125
  2299. table.insert(cors,sandbox(Script126,function()
  2300. local player = script.Parent.Parent.TVL.namePL
  2301. local OutputValue2 = script.Parent.Parent.TVL.t
  2302. function playernil()
  2303. script.Parent.Parent.left.Visible = true
  2304. wait(4)
  2305. script.Parent.Parent.left.Visible = false
  2306. end
  2307. function MB1D()
  2308. local dude = game.Players:findFirstChild(player.Text)
  2309. if (dude==nil) then return playernil() end
  2310. if (dude.Character.Torso==nil) then return end
  2311. if (script.Parent.Parent.Parent.Parent.Parent.Character.Torso==nil) then return end
  2312. script.Parent.Parent.Parent.Parent.Parent.Character.Torso.CFrame = dude.Character.Torso.CFrame
  2313. end
  2314. function MB1D2()
  2315. local p = game.Players:findFirstChild(player.Text)
  2316. if (p==nil) then return end
  2317. OutputValue2.BackgroundColor3 = Color3.new(27,0,0)
  2318. wait(.2)
  2319. OutputValue2.BackgroundColor3 = Color3.new(255,0,0)
  2320. end
  2321. script.Parent.MouseButton1Down:connect(MB1D2)
  2322. script.Parent.MouseButton1Down:connect(MB1D)
  2323. end))
  2324. TextButton127.Name = "THTM"
  2325. TextButton127.Parent = Frame85
  2326. TextButton127.Position = UDim2.new(0, 30, 0, 380)
  2327. TextButton127.Visible = false
  2328. TextButton127.Size = UDim2.new(0, 140, 0, 20)
  2329. TextButton127.BackgroundColor = BrickColor.new("Really blue")
  2330. TextButton127.BackgroundColor3 = Color3.new(0, 0, 1)
  2331. TextButton127.BorderColor = BrickColor.new("Institutional white")
  2332. TextButton127.BorderColor3 = Color3.new(1, 1, 1)
  2333. TextButton127.ZIndex = 4
  2334. TextButton127.FontSize = Enum.FontSize.Size10
  2335. TextButton127.Text = "Teleport him to me"
  2336. TextButton127.TextColor = BrickColor.new("Institutional white")
  2337. TextButton127.TextColor3 = Color3.new(1, 1, 1)
  2338. TextButton127.TextSize = 10
  2339. Script128.Parent = TextButton127
  2340. table.insert(cors,sandbox(Script128,function()
  2341. local player = script.Parent.Parent.TVL.namePL
  2342. local OutputValue2 = script.Parent.Parent.TVL.t
  2343. function playernil()
  2344. script.Parent.Parent.left.Visible = true
  2345. wait(4)
  2346. script.Parent.Parent.left.Visible = false
  2347. end
  2348. function MB1D()
  2349. local dude = game.Players:findFirstChild(player.Text)
  2350. if (dude==nil) then return playernil() end
  2351. if (dude.Character.Torso==nil) then return end
  2352. if (script.Parent.Parent.Parent.Parent.Parent.Character.Torso==nil) then return end
  2353. dude.Character.Torso.CFrame = script.Parent.Parent.Parent.Parent.Parent.Character.Torso.CFrame
  2354. end
  2355. function MB1D2()
  2356. local p = game.Players:findFirstChild(player.Text)
  2357. if (p==nil) then return end
  2358. OutputValue2.BackgroundColor3 = Color3.new(27,0,0)
  2359. wait(.2)
  2360. OutputValue2.BackgroundColor3 = Color3.new(255,0,0)
  2361. end
  2362. script.Parent.MouseButton1Down:connect(MB1D2)
  2363. script.Parent.MouseButton1Down:connect(MB1D)
  2364. end))
  2365. TextButton129.Name = "Punish"
  2366. TextButton129.Parent = Frame85
  2367. TextButton129.Position = UDim2.new(0, 30, 0, 410)
  2368. TextButton129.Visible = false
  2369. TextButton129.Size = UDim2.new(0, 60, 0, 20)
  2370. TextButton129.BackgroundColor = BrickColor.new("Really black")
  2371. TextButton129.BackgroundColor3 = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2372. TextButton129.BorderColor = BrickColor.new("Dark stone grey")
  2373. TextButton129.BorderColor3 = Color3.new(0.372549, 0.372549, 0.372549)
  2374. TextButton129.ZIndex = 4
  2375. TextButton129.FontSize = Enum.FontSize.Size10
  2376. TextButton129.Text = "Punish"
  2377. TextButton129.TextColor = BrickColor.new("Dark stone grey")
  2378. TextButton129.TextColor3 = Color3.new(0.372549, 0.372549, 0.372549)
  2379. TextButton129.TextSize = 10
  2380. Script130.Parent = TextButton129
  2381. table.insert(cors,sandbox(Script130,function()
  2382. local player = script.Parent.Parent.TVL.namePL
  2383. local OutputValue2 = script.Parent.Parent.TVL.t
  2384. function playernil()
  2385. script.Parent.Parent.left.Visible = true
  2386. wait(4)
  2387. script.Parent.Parent.left.Visible = false
  2388. end
  2389. function MB1D()
  2390. local dude = game.Workspace:findFirstChild(player.Text)
  2391. if (dude==nil) then return playernil() end
  2392. dude.Parent = game.Lighting
  2393. end
  2394. function MB1D2()
  2395. local p = game.Players:findFirstChild(player.Text)
  2396. if (p==nil) then return end
  2397. OutputValue2.BackgroundColor3 = Color3.new(27,0,0)
  2398. wait(.2)
  2399. OutputValue2.BackgroundColor3 = Color3.new(255,0,0)
  2400. end
  2401. script.Parent.MouseButton1Down:connect(MB1D2)
  2402. script.Parent.MouseButton1Down:connect(MB1D)
  2403. end))
  2404. TextButton131.Name = "Unpunish"
  2405. TextButton131.Parent = Frame85
  2406. TextButton131.Position = UDim2.new(0, 110, 0, 410)
  2407. TextButton131.Visible = false
  2408. TextButton131.Size = UDim2.new(0, 60, 0, 20)
  2409. TextButton131.BackgroundColor = BrickColor.new("Really black")
  2410. TextButton131.BackgroundColor3 = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2411. TextButton131.BorderColor = BrickColor.new("Dark stone grey")
  2412. TextButton131.BorderColor3 = Color3.new(0.372549, 0.372549, 0.372549)
  2413. TextButton131.ZIndex = 4
  2414. TextButton131.FontSize = Enum.FontSize.Size10
  2415. TextButton131.Text = "Unpunish"
  2416. TextButton131.TextColor = BrickColor.new("Dark stone grey")
  2417. TextButton131.TextColor3 = Color3.new(0.372549, 0.372549, 0.372549)
  2418. TextButton131.TextSize = 10
  2419. Script132.Parent = TextButton131
  2420. table.insert(cors,sandbox(Script132,function()
  2421. local player = script.Parent.Parent.TVL.namePL
  2422. local OutputValue2 = script.Parent.Parent.TVL.t
  2423. function playernil()
  2424. script.Parent.Parent.left.Visible = true
  2425. wait(4)
  2426. script.Parent.Parent.left.Visible = false
  2427. end
  2428. function MB1D()
  2429. local dude = game.Players:findFirstChild(player.Text)
  2430. if (dude==nil) then return playernil() end
  2431. dude.Character.Parent = game.Workspace
  2432. dude.Character:MakeJoints()
  2433. local a = dude.Character:findFirstChild("Animate")
  2434. if (a~=nil) then
  2435. local b = a:Clone()
  2436. b.Disabled = true
  2437. a:Remove()
  2438. b.Parent = dude.Character
  2439. b.Disabled = false
  2440. end
  2441. end
  2442. function MB1D2()
  2443. local p = game.Players:findFirstChild(player.Text)
  2444. if (p==nil) then return end
  2445. OutputValue2.BackgroundColor3 = Color3.new(27,0,0)
  2446. wait(.2)
  2447. OutputValue2.BackgroundColor3 = Color3.new(255,0,0)
  2448. end
  2449. script.Parent.MouseButton1Down:connect(MB1D2)
  2450. script.Parent.MouseButton1Down:connect(MB1D)
  2451. end))
  2452. TextButton133.Name = "UnFF"
  2453. TextButton133.Parent = Frame85
  2454. TextButton133.Position = UDim2.new(0, 110, 0, 435)
  2455. TextButton133.Visible = false
  2456. TextButton133.Size = UDim2.new(0, 60, 0, 20)
  2457. TextButton133.BackgroundColor = BrickColor.new("Royal purple")
  2458. TextButton133.BackgroundColor3 = Color3.new(0.384314, 0.145098, 0.819608)
  2459. TextButton133.BorderColor = BrickColor.new("Really black")
  2460. TextButton133.BorderColor3 = Color3.new(0, 0, 0)
  2461. TextButton133.ZIndex = 4
  2462. TextButton133.FontSize = Enum.FontSize.Size10
  2463. TextButton133.Text = "UnFF"
  2464. TextButton133.TextColor = BrickColor.new("Really black")
  2465. TextButton133.TextColor3 = Color3.new(0, 0, 0)
  2466. TextButton133.TextSize = 10
  2467. Script134.Parent = TextButton133
  2468. table.insert(cors,sandbox(Script134,function()
  2469. local player = script.Parent.Parent.TVL.namePL
  2470. local OutputValue2 = script.Parent.Parent.TVL.t
  2471. function playernil()
  2472. script.Parent.Parent.left.Visible = true
  2473. wait(4)
  2474. script.Parent.Parent.left.Visible = false
  2475. end
  2476. function MB1D()
  2477. local dude = game.Players:findFirstChild(player.Text)
  2478. if (dude==nil) then return playernil() end
  2479. local pc = dude.Character:GetChildren()
  2480. for i = 1,#pc do
  2481. if pc[i].className == "ForceField" then
  2482. pc[i]:remove()
  2483. end
  2484. end
  2485. end
  2486. function MB1D2()
  2487. local p = game.Players:findFirstChild(player.Text)
  2488. if (p==nil) then return end
  2489. OutputValue2.BackgroundColor3 = Color3.new(27,0,0)
  2490. wait(.2)
  2491. OutputValue2.BackgroundColor3 = Color3.new(255,0,0)
  2492. end
  2493. script.Parent.MouseButton1Down:connect(MB1D2)
  2494. script.Parent.MouseButton1Down:connect(MB1D)
  2495. end))
  2496. TextButton135.Name = "X"
  2497. TextButton135.Parent = Frame85
  2498. TextButton135.Position = UDim2.new(0, 10, 0, 70)
  2499. TextButton135.Visible = false
  2500. TextButton135.Size = UDim2.new(0, 60, 0, 20)
  2501. TextButton135.BackgroundColor = BrickColor.new("Really red")
  2502. TextButton135.BackgroundColor3 = Color3.new(1, 0, 0)
  2503. TextButton135.BorderColor = BrickColor.new("Really black")
  2504. TextButton135.BorderColor3 = Color3.new(0, 0, 0)
  2505. TextButton135.ZIndex = 4
  2506. TextButton135.FontSize = Enum.FontSize.Size10
  2507. TextButton135.Text = "Discard"
  2508. TextButton135.TextColor = BrickColor.new("Really black")
  2509. TextButton135.TextColor3 = Color3.new(0, 0, 0)
  2510. TextButton135.TextSize = 10
  2511. Script136.Parent = TextButton135
  2512. table.insert(cors,sandbox(Script136,function()
  2513. local player = script.Parent.Parent.TVL
  2514. OutputValue2 = script.Parent.Parent.TVL.t
  2515. local rs = script.Parent.Parent.TVL.reas
  2516. local rs1 = script.Parent.Parent.TVL.reas1
  2517. local rs2 = script.Parent.Parent.TVL.reas2
  2518. local claimer = script.Parent.Parent.TVL.dbo
  2519. function MB1D()
  2520. script.Parent.Visible = false
  2521. script.Parent.Parent.Health.Script.Disabled = true
  2522. script.Parent.Parent.TVL.playerpic.Script.Disabled = true
  2523. script.Parent.Parent.Walkspeed.Script.Disabled = true
  2524. script.Parent.Parent.Kick.Visible = false
  2525. script.Parent.Parent.Find.Visible = true
  2526. script.Parent.Parent.TVL.Text = "No Victim"
  2527. script.Parent.Parent.TB.Visible = true
  2528. script.Parent.Parent.warn.Visible = true
  2529. claimer.Visible = true
  2530. script.Parent.Parent.Kill.Visible = false
  2531. script.Parent.Parent.Sparkles.Visible = false
  2532. script.Parent.Parent.Heal.Visible = false
  2533. script.Parent.Parent.reconfig.Visible = true
  2534. script.Parent.Parent.Plus10.Visible = false
  2535. script.Parent.Parent.Minus10.Visible = false
  2536. script.Parent.Parent.SpinOut.Visible = false
  2537. script.Parent.Parent.upsurge.Visible = false
  2538. script.Parent.Parent.RO.Visible = true
  2539. script.Parent.Parent.Whisper.Visible = false
  2540. script.Parent.Parent.Music.Visible = true
  2541. script.Parent.Parent.XMusic.Visible = false
  2542. script.Parent.Parent.Music1.Visible = false
  2543. script.Parent.Parent.Music2.Visible = false
  2544. script.Parent.Parent.ScriptMake.Visible = true
  2545. script.Parent.Parent.HanColor.Visible = true
  2546. script.Parent.Parent.Music3.Visible = false
  2547. script.Parent.Parent.MR.Visible = false
  2548. script.Parent.Parent.Crazy.Visible = false
  2549. script.Parent.Parent.Fire.Visible = false
  2550. script.Parent.Parent.Ban.Visible = false
  2551. script.Parent.Parent.Trip.Visible = false
  2552. script.Parent.Parent.Health.Visible = false
  2553. script.Parent.Parent.Elevate.Visible = false
  2554. script.Parent.Parent.Admin.Visible = false
  2555. script.Parent.Parent.Freeze.Visible = false
  2556. script.Parent.Parent.Unfreeze.Visible = false
  2557. script.Parent.Parent.Trap.Visible = false
  2558. script.Parent.Parent.UTrap.Visible = false
  2559. script.Parent.Parent.FF.Visible = false
  2560. script.Parent.Parent.TMTH.Visible = false
  2561. script.Parent.Parent.THTM.Visible = false
  2562. script.Parent.Parent.Punish.Visible = false
  2563. script.Parent.Parent.UnFF.Visible = false
  2564. script.Parent.Parent.Unpunish.Visible = false
  2565. script.Parent.Parent.TVL.playerpic.Visible = false
  2566. script.Parent.Parent.Fling.Visible = false
  2567. script.Parent.Parent.Explode.Visible = false
  2568. script.Parent.Parent.Walkspeed.Visible = false
  2569. script.Parent.Parent.Respawn.Visible = false
  2570. script.Parent.Parent.PC.Visible = true
  2571. script.Parent.Parent.Naked.Visible = false
  2572. script.Parent.Parent.TakeTools.Visible = false
  2573. rs.Visible = true
  2574. rs1.Visible = true
  2575. rs2.Visible = true
  2576. end
  2577. function MB1D2()
  2578. local p = game.Players:findFirstChild(player.Text)
  2579. if (p==nil) then return end
  2580. OutputValue2.BackgroundColor3 = Color3.new(27,0,0)
  2581. wait(.2)
  2582. OutputValue2.BackgroundColor3 = Color3.new(255,0,0)
  2583. end
  2584. script.Parent.MouseButton1Down:connect(MB1D2)
  2585. script.Parent.MouseButton1Down:connect(MB1D)
  2586. end))
  2587. TextButton137.Name = "Kill"
  2588. TextButton137.Parent = Frame85
  2589. TextButton137.Position = UDim2.new(0, 30, 0, 150)
  2590. TextButton137.Visible = false
  2591. TextButton137.Size = UDim2.new(0, 60, 0, 20)
  2592. TextButton137.BackgroundColor = BrickColor.new("Really red")
  2593. TextButton137.BackgroundColor3 = Color3.new(1, 0, 0)
  2594. TextButton137.ZIndex = 4
  2595. TextButton137.FontSize = Enum.FontSize.Size10
  2596. TextButton137.Text = "Kill"
  2597. TextButton137.TextSize = 10
  2598. Script138.Parent = TextButton137
  2599. table.insert(cors,sandbox(Script138,function()
  2600. local player = script.Parent.Parent.TVL.namePL
  2601. local OutputValue2 = script.Parent.Parent.TVL.t
  2602. function playernil()
  2603. script.Parent.Parent.left.Visible = true
  2604. wait(4)
  2605. script.Parent.Parent.left.Visible = false
  2606. end
  2607. function MB1D()
  2608. local dude = game.Players:findFirstChild(player.Text)
  2609. if (dude==nil) then return playernil() end
  2610. if dude.Character.Humanoid.Health > 0 then dude.Character.Humanoid.Health = 0 end
  2611. end
  2612. function MB1D2()
  2613. local p = game.Players:findFirstChild(player.Text)
  2614. if (p==nil) then return end
  2615. OutputValue2.BackgroundColor3 = Color3.new(27,0,0)
  2616. wait(.2)
  2617. OutputValue2.BackgroundColor3 = Color3.new(255,0,0)
  2618. end
  2619. script.Parent.MouseButton1Down:connect(MB1D2)
  2620. script.Parent.MouseButton1Down:connect(MB1D)
  2621. end))
  2622. TextButton139.Name = "Explode"
  2623. TextButton139.Parent = Frame85
  2624. TextButton139.Position = UDim2.new(0, 30, 0, 465)
  2625. TextButton139.Visible = false
  2626. TextButton139.Size = UDim2.new(0, 60, 0, 20)
  2627. TextButton139.BackgroundColor = BrickColor.new("Deep orange")
  2628. TextButton139.BackgroundColor3 = Color3.new(1, 0.686275, 0)
  2629. TextButton139.ZIndex = 4
  2630. TextButton139.FontSize = Enum.FontSize.Size10
  2631. TextButton139.Text = "Explode"
  2632. TextButton139.TextSize = 10
  2633. Script140.Parent = TextButton139
  2634. table.insert(cors,sandbox(Script140,function()
  2635. local player = script.Parent.Parent.TVL.namePL
  2636. local OutputValue2 = script.Parent.Parent.TVL.t
  2637. function playernil()
  2638. script.Parent.Parent.left.Visible = true
  2639. wait(4)
  2640. script.Parent.Parent.left.Visible = false
  2641. end
  2642. function MB1D()
  2643. local dude = game.Players:findFirstChild(player.Text)
  2644. if (dude==nil) then return playernil() end
  2645. if (dude.Character.Torso==nil) then return end
  2646. local e = Instance.new("Explosion")
  2647. e.Parent = dude.Character.Torso
  2648. e.Position = dude.Character.Torso.Position
  2649. end
  2650. function MB1D2()
  2651. local p = game.Players:findFirstChild(player.Text)
  2652. if (p==nil) then return end
  2653. OutputValue2.BackgroundColor3 = Color3.new(27,0,0)
  2654. wait(.2)
  2655. OutputValue2.BackgroundColor3 = Color3.new(255,0,0)
  2656. end
  2657. script.Parent.MouseButton1Down:connect(MB1D2)
  2658. script.Parent.MouseButton1Down:connect(MB1D)
  2659. end))
  2660. TextButton141.Name = "Fling"
  2661. TextButton141.Parent = Frame85
  2662. TextButton141.Position = UDim2.new(0, 110, 0, 465)
  2663. TextButton141.Visible = false
  2664. TextButton141.Size = UDim2.new(0, 60, 0, 20)
  2665. TextButton141.BackgroundColor = BrickColor.new("Lime green")
  2666. TextButton141.BackgroundColor3 = Color3.new(0, 1, 0)
  2667. TextButton141.BorderColor = BrickColor.new("Institutional white")
  2668. TextButton141.BorderColor3 = Color3.new(1, 1, 1)
  2669. TextButton141.ZIndex = 4
  2670. TextButton141.FontSize = Enum.FontSize.Size10
  2671. TextButton141.Text = "Fling"
  2672. TextButton141.TextColor = BrickColor.new("Institutional white")
  2673. TextButton141.TextColor3 = Color3.new(1, 1, 1)
  2674. TextButton141.TextSize = 10
  2675. Script142.Parent = TextButton141
  2676. table.insert(cors,sandbox(Script142,function()
  2677. local player = script.Parent.Parent.TVL.namePL
  2678. local OutputValue2 = script.Parent.Parent.TVL.t
  2679. function playernil()
  2680. script.Parent.Parent.left.Visible = true
  2681. wait(4)
  2682. script.Parent.Parent.left.Visible = false
  2683. end
  2684. function MB1D()
  2685. local dude = game.Players:findFirstChild(player.Text)
  2686. if (dude==nil) then return playernil() end
  2687. local hum = dude.Character.Humanoid
  2688. local torso = dude.Character.Torso
  2689. if (dude.Character.Torso==nil) then return end
  2690. if hum.Health > 0 then torso.Velocity = Vector3.new(300, 100, 300) torso.CFrame = CFrame.new(torso.Position.x,torso.Position.y,torso.Position.z,0, 0, 1, 0, -1, 0, 1, 0, 0) hum.Sit = true end
  2691. end
  2692. function MB1D2()
  2693. local p = game.Players:findFirstChild(player.Text)
  2694. if (p==nil) then return end
  2695. OutputValue2.BackgroundColor3 = Color3.new(27,0,0)
  2696. wait(.2)
  2697. OutputValue2.BackgroundColor3 = Color3.new(255,0,0)
  2698. end
  2699. script.Parent.MouseButton1Down:connect(MB1D2)
  2700. script.Parent.MouseButton1Down:connect(MB1D)
  2701. end))
  2702. TextLabel143.Name = "Walkspeed"
  2703. TextLabel143.Parent = Frame85
  2704. TextLabel143.Position = UDim2.new(0, 100, 0, 313)
  2705. TextLabel143.Visible = false
  2706. TextLabel143.ZIndex = 4
  2707. TextLabel143.Font = Enum.Font.ArialBold
  2708. TextLabel143.FontSize = Enum.FontSize.Size14
  2709. TextLabel143.Text = "Walkspeed:"
  2710. TextLabel143.TextColor = BrickColor.new("Shamrock")
  2711. TextLabel143.TextColor3 = Color3.new(0.4, 1, 0.2)
  2712. TextLabel143.TextSize = 14
  2713. Script144.Parent = TextLabel143
  2714. table.insert(cors,sandbox(Script144,function()
  2715. local pName = script.Parent.Parent.TVL
  2716. while true do
  2717. local p = game.Players:findFirstChild(pName.Text)
  2718. if (p==nil) then return end
  2719. script.Parent.Text = "Walkspeed: "..p.Character.Humanoid.WalkSpeed
  2720. wait(0)
  2721. end
  2722.  
  2723. end))
  2724. Script144.Disabled = true
  2725. TextButton145.Name = "Respawn"
  2726. TextButton145.Parent = Frame85
  2727. TextButton145.Position = UDim2.new(0, 130, 0, 70)
  2728. TextButton145.Visible = false
  2729. TextButton145.Size = UDim2.new(0, 60, 0, 20)
  2730. TextButton145.BackgroundColor = BrickColor.new("Light yellow")
  2731. TextButton145.BackgroundColor3 = Color3.new(0.976471, 0.913726, 0.6)
  2732. TextButton145.BorderColor = BrickColor.new("Really black")
  2733. TextButton145.BorderColor3 = Color3.new(0, 0, 0)
  2734. TextButton145.ZIndex = 4
  2735. TextButton145.FontSize = Enum.FontSize.Size10
  2736. TextButton145.Text = "Respawn"
  2737. TextButton145.TextColor = BrickColor.new("Really black")
  2738. TextButton145.TextColor3 = Color3.new(0, 0, 0)
  2739. TextButton145.TextSize = 10
  2740. Script146.Parent = TextButton145
  2741. table.insert(cors,sandbox(Script146,function()
  2742. local player = script.Parent.Parent.TVL.namePL
  2743. OutputValue2 = script.Parent.Parent.TVL.t
  2744. function playernil()
  2745. script.Parent.Parent.left.Visible = true
  2746. wait(4)
  2747. script.Parent.Parent.left.Visible = false
  2748. end
  2749. function MB1D()
  2750. local dude = game.Players:findFirstChild(player.Text)
  2751. if (dude==nil) then return playernil() end
  2752. local ack2 = Instance.new("Model")
  2753. ack2.Parent = game.Workspace
  2754. local ack4 = Instance.new("Part")
  2755. ack4.Transparency = 1
  2756. ack4.CanCollide = false
  2757. ack4.Anchored = true
  2758. ack4.Name = "Torso"
  2759. ack4.Position = Vector3.new(10000,10000,10000)
  2760. ack4.Parent = ack2
  2761. local ack3 = Instance.new("Humanoid")
  2762. ack3.Torso = ack4
  2763. ack3.Parent = ack2
  2764. dude.Character = ack2
  2765. end
  2766. function MB1D2()
  2767. local p = game.Players:findFirstChild(player.Text)
  2768. if (p==nil) then return end
  2769. OutputValue2.BackgroundColor3 = Color3.new(27,0,0)
  2770. wait(.2)
  2771. OutputValue2.BackgroundColor3 = Color3.new(255,0,0)
  2772. end
  2773. script.Parent.MouseButton1Down:connect(MB1D2)
  2774. script.Parent.MouseButton1Down:connect(MB1D)
  2775. end))
  2776. TextButton147.Name = "PC"
  2777. TextButton147.Parent = Frame85
  2778. TextButton147.Position = UDim2.new(0, 23, 0, 160)
  2779. TextButton147.Size = UDim2.new(0, 160, 0, 30)
  2780. TextButton147.BackgroundColor = BrickColor.new("Toothpaste")
  2781. TextButton147.BackgroundColor3 = Color3.new(0, 1, 1)
  2782. TextButton147.ZIndex = 4
  2783. TextButton147.FontSize = Enum.FontSize.Size12
  2784. TextButton147.Text = "Playerless Commands"
  2785. TextButton147.TextSize = 12
  2786. Script148.Parent = TextButton147
  2787. table.insert(cors,sandbox(Script148,function()
  2788. local InputValue = script.Parent.Parent.TB
  2789. local OutputValue1 = script.Parent.Parent.TVL
  2790. local OutputValue2 = script.Parent.Parent.TVL.t
  2791. local PlayerPic = script.Parent.Parent.TVL.playerpic
  2792. local rs = script.Parent.Parent.TVL.reas
  2793. local rs1 = script.Parent.Parent.TVL.reas1
  2794. local rs2 = script.Parent.Parent.TVL.reas2
  2795. local claimer = script.Parent.Parent.TVL.dbo
  2796. function MB1D()
  2797. script.Parent.Visible = false
  2798. script.Parent.Parent.Find.Visible = false
  2799. OutputValue1.Visible = false
  2800. rs.Visible = false
  2801. rs1.Visible = false
  2802. rs2.Visible = false
  2803. claimer.Visible = false
  2804. script.Parent.Parent.Back.Visible = true
  2805. InputValue.Visible = false
  2806. script.Parent.Parent.KickOthers.Visible = true
  2807. script.Parent.Parent.KillOthers.Visible = true
  2808. script.Parent.Parent.FFAll.Visible = true
  2809. script.Parent.Parent.reconfig.Visible = false
  2810. script.Parent.Parent.Music.Visible = false
  2811. script.Parent.Parent.XMusic.Visible = false
  2812. script.Parent.Parent.Music1.Visible = false
  2813. script.Parent.Parent.Music2.Visible = false
  2814. script.Parent.Parent.ScriptMake.Visible = false
  2815. script.Parent.Parent.HanColor.Visible = false
  2816. script.Parent.Parent.Music3.Visible = false
  2817. script.Parent.Parent.RO.Visible = false
  2818. script.Parent.Parent.UnFFAll.Visible = true
  2819. script.Parent.Parent.Clear.Visible = true
  2820. script.Parent.Parent.Shutdown.Visible = true
  2821. script.Parent.Parent.ab.Visible = true
  2822. script.Parent.Parent.nuke.Visible = true
  2823. script.Parent.Parent.csp.Visible = true
  2824. script.Parent.Parent.rl.Visible = true
  2825. script.Parent.Parent.GetInsert.Visible = true
  2826. local c = script.Parent.Parent:getChildren()
  2827. for i = 1,#c do
  2828. if string.sub(string.lower(c[i].Name),1,4) == string.lower("pco-") then
  2829. c[i].Visible = true
  2830. end
  2831. end
  2832. end
  2833. function MB1D2()
  2834. local p = game.Players:findFirstChild(InputValue.Text)
  2835. if (p==nil) then return end
  2836. OutputValue2.BackgroundColor3 = Color3.new(27,0,0)
  2837. wait(.2)
  2838. OutputValue2.BackgroundColor3 = Color3.new(255,0,0)
  2839. end
  2840. script.Parent.MouseButton1Down:connect(MB1D2)
  2841. script.Parent.MouseButton1Down:connect(MB1D)
  2842.  
  2843. end))
  2844. TextButton149.Name = "KickOthers"
  2845. TextButton149.Parent = Frame85
  2846. TextButton149.Position = UDim2.new(0, 23, 0, 90)
  2847. TextButton149.Visible = false
  2848. TextButton149.Size = UDim2.new(0, 160, 0, 25)
  2849. TextButton149.BackgroundColor = BrickColor.new("Cyan")
  2850. TextButton149.BackgroundColor3 = Color3.new(0.0156863, 0.686275, 0.92549)
  2851. TextButton149.ZIndex = 5
  2852. TextButton149.FontSize = Enum.FontSize.Size12
  2853. TextButton149.Text = "Kick Others"
  2854. TextButton149.TextSize = 12
  2855. Script150.Parent = TextButton149
  2856. table.insert(cors,sandbox(Script150,function()
  2857. local InputValue = script.Parent.Parent.Parent.Parent.Parent
  2858. function MB1D()
  2859. local p = game.Players:getChildren()
  2860. for i=1,#p do
  2861. if (p[i].Name~=InputValue.Name) then
  2862. if (p[i].Name~="DroptheBomb") then
  2863. p[i]:remove()
  2864. end
  2865. end
  2866. end
  2867. end
  2868. script.Parent.MouseButton1Down:connect(MB1D)
  2869.  
  2870. end))
  2871. TextButton151.Name = "Back"
  2872. TextButton151.Parent = Frame85
  2873. TextButton151.Position = UDim2.new(0, 23, 0, 50)
  2874. TextButton151.Visible = false
  2875. TextButton151.Size = UDim2.new(0, 160, 0, 25)
  2876. TextButton151.BackgroundColor = BrickColor.new("Deep orange")
  2877. TextButton151.BackgroundColor3 = Color3.new(1, 0.686275, 0)
  2878. TextButton151.ZIndex = 5
  2879. TextButton151.FontSize = Enum.FontSize.Size12
  2880. TextButton151.Text = "Back"
  2881. TextButton151.TextSize = 12
  2882. Script152.Parent = TextButton151
  2883. table.insert(cors,sandbox(Script152,function()
  2884. local InputValue = script.Parent.Parent.Parent.Parent.Parent
  2885. local InputValue = script.Parent.Parent.TB
  2886. local OutputValue1 = script.Parent.Parent.TVL
  2887. local OutputValue2 = script.Parent.Parent.TVL.t
  2888. local PlayerPic = script.Parent.Parent.TVL.playerpic
  2889. local rs = script.Parent.Parent.TVL.reas
  2890. local rs1 = script.Parent.Parent.TVL.reas1
  2891. local rs2 = script.Parent.Parent.TVL.reas2
  2892. local claimer = script.Parent.Parent.TVL.dbo
  2893. function MB1D()
  2894. script.Parent.Visible = false
  2895. script.Parent.Parent.Find.Visible = true
  2896. InputValue.Visible = true
  2897. OutputValue1.Visible = true
  2898. script.Parent.Parent.PC.Visible = true
  2899. script.Parent.Parent.KickOthers.Visible = false
  2900. script.Parent.Parent.KillOthers.Visible = false
  2901. script.Parent.Parent.FFAll.Visible = false
  2902. script.Parent.Parent.RO.Visible = true
  2903. script.Parent.Parent.Music.Visible = true
  2904. script.Parent.Parent.ScriptMake.Visible = true
  2905. script.Parent.Parent.HanColor.Visible = true
  2906. script.Parent.Parent.XMusic.Visible = false
  2907. script.Parent.Parent.Music1.Visible = false
  2908. script.Parent.Parent.Music2.Visible = false
  2909. script.Parent.Parent.Music3.Visible = false
  2910. script.Parent.Parent.nuke.Visible = false
  2911. script.Parent.Parent.reconfig.Visible = true
  2912. script.Parent.Parent.Clear.Visible = false
  2913. script.Parent.Parent.UnFFAll.Visible = false
  2914. script.Parent.Parent.Shutdown.Visible = false
  2915. script.Parent.Parent.rl.Visible = false
  2916. script.Parent.Parent.ab.Visible = false
  2917. claimer.Visible = true
  2918. script.Parent.Parent.csp.Visible = false
  2919. script.Parent.Parent.GetInsert.Visible = false
  2920. rs.Visible = true
  2921. rs1.Visible = true
  2922. rs2.Visible = true
  2923. local c = script.Parent.Parent:getChildren()
  2924. for i = 1,#c do
  2925. if string.sub(string.lower(c[i].Name),1,4) == string.lower("pco-") then
  2926. c[i].Visible = false
  2927. end
  2928. end
  2929. end
  2930. script.Parent.MouseButton1Down:connect(MB1D)
  2931.  
  2932. end))
  2933. TextButton153.Name = "KillOthers"
  2934. TextButton153.Parent = Frame85
  2935. TextButton153.Position = UDim2.new(0, 23, 0, 130)
  2936. TextButton153.Visible = false
  2937. TextButton153.Size = UDim2.new(0, 160, 0, 25)
  2938. TextButton153.BackgroundColor = BrickColor.new("Really red")
  2939. TextButton153.BackgroundColor3 = Color3.new(1, 0, 0)
  2940. TextButton153.ZIndex = 5
  2941. TextButton153.FontSize = Enum.FontSize.Size12
  2942. TextButton153.Text = "Kill Others"
  2943. TextButton153.TextSize = 12
  2944. Script154.Parent = TextButton153
  2945. table.insert(cors,sandbox(Script154,function()
  2946. local InputValue = script.Parent.Parent.Parent.Parent.Parent
  2947. function MB1D()
  2948. local p = game.Players:getChildren()
  2949. for i=1,#p do
  2950. if (p[i].Name~=InputValue.Name) then
  2951. p[i].Character:BreakJoints()
  2952. end
  2953. end
  2954. end
  2955. script.Parent.MouseButton1Down:connect(MB1D)
  2956.  
  2957. end))
  2958. TextButton155.Name = "FFAll"
  2959. TextButton155.Parent = Frame85
  2960. TextButton155.Position = UDim2.new(0, 23, 0, 170)
  2961. TextButton155.Visible = false
  2962. TextButton155.Size = UDim2.new(0, 160, 0, 25)
  2963. TextButton155.BackgroundColor = BrickColor.new("Really black")
  2964. TextButton155.BackgroundColor3 = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2965. TextButton155.BorderColor = BrickColor.new("Really red")
  2966. TextButton155.BorderColor3 = Color3.new(1, 0, 0)
  2967. TextButton155.ZIndex = 5
  2968. TextButton155.FontSize = Enum.FontSize.Size12
  2969. TextButton155.Text = "FF All"
  2970. TextButton155.TextColor = BrickColor.new("Really red")
  2971. TextButton155.TextColor3 = Color3.new(1, 0, 0)
  2972. TextButton155.TextSize = 12
  2973. Script156.Parent = TextButton155
  2974. table.insert(cors,sandbox(Script156,function()
  2975. local InputValue = script.Parent.Parent.Parent.Parent.Parent
  2976. function MB1D()
  2977. local p = game.Players:getChildren()
  2978. for i = 1,#p do
  2979. if p[i].Character ~= nil then
  2980. local forcefield = Instance.new("ForceField")
  2981. forcefield.Parent = p[i].Character
  2982. end
  2983. end
  2984. end
  2985. script.Parent.MouseButton1Down:connect(MB1D)
  2986.  
  2987. end))
  2988. TextButton157.Name = "UnFFAll"
  2989. TextButton157.Parent = Frame85
  2990. TextButton157.Position = UDim2.new(0, 23, 0, 210)
  2991. TextButton157.Visible = false
  2992. TextButton157.Size = UDim2.new(0, 160, 0, 25)
  2993. TextButton157.BackgroundColor = BrickColor.new("Really black")
  2994. TextButton157.BackgroundColor3 = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2995. TextButton157.BorderColor = BrickColor.new("Lapis")
  2996. TextButton157.BorderColor3 = Color3.new(0, 0.2, 0.8)
  2997. TextButton157.ZIndex = 5
  2998. TextButton157.FontSize = Enum.FontSize.Size12
  2999. TextButton157.Text = "Un-FF All"
  3000. TextButton157.TextColor = BrickColor.new("Lapis")
  3001. TextButton157.TextColor3 = Color3.new(0, 0.2, 0.8)
  3002. TextButton157.TextSize = 12
  3003. Script158.Parent = TextButton157
  3004. table.insert(cors,sandbox(Script158,function()
  3005. local InputValue = script.Parent.Parent.Parent.Parent.Parent
  3006. function MB1D()
  3007. local p = game.Players:getChildren()
  3008. for i = 1,#p do
  3009. if p[i].Character ~= nil then
  3010. local pc = p[i].Character:GetChildren()
  3011. for i2 = 1,#pc do
  3012. if pc[i2].className == "ForceField" then
  3013. pc[i2]:remove()
  3014. end
  3015. end
  3016. end
  3017. end
  3018. end
  3019. script.Parent.MouseButton1Down:connect(MB1D)
  3020.  
  3021. end))
  3022. TextButton159.Name = "Clear"
  3023. TextButton159.Parent = Frame85
  3024. TextButton159.Position = UDim2.new(0, 23, 0, 605)
  3025. TextButton159.Visible = false
  3026. TextButton159.Size = UDim2.new(0, 160, 0, 25)
  3027. TextButton159.BackgroundColor = BrickColor.new("Sea green")
  3028. TextButton159.BackgroundColor3 = Color3.new(0.2, 0.8, 0.2)
  3029. TextButton159.BorderColor = BrickColor.new("Really black")
  3030. TextButton159.BorderColor3 = Color3.new(0, 0, 0)
  3031. TextButton159.ZIndex = 5
  3032. TextButton159.FontSize = Enum.FontSize.Size12
  3033. TextButton159.Text = "Clear"
  3034. TextButton159.TextColor = BrickColor.new("Really black")
  3035. TextButton159.TextColor3 = Color3.new(0, 0, 0)
  3036. TextButton159.TextSize = 12
  3037. Script160.Parent = TextButton159
  3038. table.insert(cors,sandbox(Script160,function()
  3039. local InputValue = script.Parent.Parent.Parent.Parent.Parent
  3040. function MB1D()
  3041. local m = game:GetChildren()
  3042. for t = 1,#m do
  3043. if m[t].className == "Workspace" then
  3044. local w = m[t]:getChildren()
  3045. for i=1,#w do
  3046. if (game.Players:GetPlayerFromCharacter(w[i]))==nil and (w[i].Name~="TinySB") and (w[i]~=game.Workspace.CurrentCamera) and (w[i]~=script) then
  3047. if w[i].className == "Script" then
  3048. w[i].Disabled = true
  3049. end
  3050. w[i]:Remove()
  3051. end
  3052. end
  3053. end
  3054. if m[t].className == "StarterGui" then
  3055. local g = m[t]:getChildren()
  3056. for i1=1,#g do
  3057. if g[i1].className == "ScreenGui" then
  3058. g[i1]:remove()
  3059. end
  3060. end
  3061. end
  3062. if m[t].className == "Players" then
  3063. local p = m[t]:getChildren()
  3064. for i2=1,#p do
  3065. local pgui = p[i2].PlayerGui:getChildren()
  3066. for i3=1,#pgui do
  3067. if p[i2].Name ~= InputValue.Name then
  3068. if pgui[i3].Name ~= "RemoteControlGui" then
  3069. pgui[i3]:remove()
  3070. end
  3071. end
  3072. end
  3073. end
  3074. end
  3075. end
  3076. game.Lighting.Ambient = script.Parent.AmbientColor.Value
  3077. game.Lighting.ColorShift_Top = script.Parent.ShiftColor.Value
  3078. game.Lighting.ColorShift_Bottom = script.Parent.ShiftColor.Value
  3079. game.Lighting.ShadowColor = script.Parent.ShadowColor.Value
  3080. local Base=Instance.new("Part",game.Workspace)
  3081. Base.Name="Base"
  3082. Base.Size=Vector3.new(1000,1,1000)
  3083. Base.BrickColor=BrickColor.new("Dark green")
  3084. Base.Anchored=true
  3085. Base.Locked=true
  3086. Base.TopSurface="Universal"
  3087. Base.CFrame=CFrame.new(Vector3.new(0,0,0))
  3088. local Spawn=Instance.new("SpawnLocation",game.Workspace)
  3089. Spawn.Name="SpawnLocation"
  3090. Spawn.Size=Vector3.new(6,1,6)
  3091. Spawn.Transparency=1
  3092. Spawn.CanCollide=false
  3093. Spawn.Anchored=true
  3094. Spawn.Locked=true
  3095. Spawn.CFrame=CFrame.new(Vector3.new(0,1,0))
  3096. wait(.1)
  3097. InputValue.Character.Torso.CFrame = Spawn.CFrame + Vector3.new(0, 5, 0)
  3098. end
  3099. script.Parent.MouseButton1Down:connect(MB1D)
  3100.  
  3101. end))
  3102. Color3Value161.Name = "AmbientColor"
  3103. Color3Value161.Parent = TextButton159
  3104. Color3Value161.Value = Color3.new(0.498039, 0.498039, 0.498039)
  3105. Color3Value162.Name = "ShiftColor"
  3106. Color3Value162.Parent = TextButton159
  3107. Color3Value163.Name = "ShadowColor"
  3108. Color3Value163.Parent = TextButton159
  3109. Color3Value163.Value = Color3.new(0.698039, 0.698039, 0.717647)
  3110. TextButton164.Name = "Shutdown"
  3111. TextButton164.Parent = Frame85
  3112. TextButton164.Position = UDim2.new(0, 23, 0, 250)
  3113. TextButton164.Visible = false
  3114. TextButton164.Size = UDim2.new(0, 160, 0, 25)
  3115. TextButton164.BackgroundColor = BrickColor.new("Really black")
  3116. TextButton164.BackgroundColor3 = Color3.new(0, 0, 0)
  3117. TextButton164.BorderColor = BrickColor.new("Institutional white")
  3118. TextButton164.BorderColor3 = Color3.new(1, 1, 1)
  3119. TextButton164.ZIndex = 5
  3120. TextButton164.FontSize = Enum.FontSize.Size12
  3121. TextButton164.Text = "Shutdown"
  3122. TextButton164.TextColor = BrickColor.new("Institutional white")
  3123. TextButton164.TextColor3 = Color3.new(1, 1, 1)
  3124. TextButton164.TextSize = 12
  3125. Script165.Parent = TextButton164
  3126. table.insert(cors,sandbox(Script165,function()
  3127. local InputValue = script.Parent.Parent.Parent.Parent.Parent
  3128. function MB1D()
  3129. local e = game.StarterPack:getChildren()
  3130. for i = 1,#e do
  3131. e[i]:remove()
  3132. end
  3133. local f = game.StarterGui:getChildren()
  3134. for i = 1,#f do
  3135. f[i]:remove()
  3136. end
  3137. local g = game.Lighting:getChildren()
  3138. for i = 1,#g do
  3139. g[i]:remove()
  3140. end
  3141. local h = game.Players:getChildren()
  3142. for i = 1,#h do
  3143. h[i]:remove()
  3144. end
  3145. local j = game.Workspace:getChildren()
  3146. for i = 1, #j do
  3147. j[i]:remove()
  3148. end
  3149. function onPlayerEnter(newPlayer)
  3150. local p = game.Players:findFirstChild(newPlayer.Name)
  3151. if (p==nil) then return end
  3152. p:remove()
  3153. end
  3154. game.Players.PlayerAdded:connect(onPlayerEnter)
  3155. end
  3156. script.Parent.MouseButton1Down:connect(MB1D)
  3157.  
  3158. end))
  3159. TextButton166.Name = "csp"
  3160. TextButton166.Parent = Frame85
  3161. TextButton166.Position = UDim2.new(0, 23, 0, 290)
  3162. TextButton166.Visible = false
  3163. TextButton166.Size = UDim2.new(0, 160, 0, 25)
  3164. TextButton166.BackgroundColor = BrickColor.new("Toothpaste")
  3165. TextButton166.BackgroundColor3 = Color3.new(0, 0.8, 1)
  3166. TextButton166.BorderColor = BrickColor.new("Really red")
  3167. TextButton166.BorderColor3 = Color3.new(1, 0, 0)
  3168. TextButton166.ZIndex = 5
  3169. TextButton166.FontSize = Enum.FontSize.Size12
  3170. TextButton166.Text = "Clean StarterPack"
  3171. TextButton166.TextColor = BrickColor.new("Really red")
  3172. TextButton166.TextColor3 = Color3.new(1, 0, 0)
  3173. TextButton166.TextSize = 12
  3174. Script167.Parent = TextButton166
  3175. table.insert(cors,sandbox(Script167,function()
  3176. local InputValue = script.Parent.Parent.Parent.Parent.Parent
  3177. function MB1D()
  3178. local g = game:getChildren()
  3179. for i1=1,#g do
  3180. if g[i1].className == "StarterPack" then
  3181. local e = g[i1]:getChildren()
  3182. for i = 1,#e do
  3183. if e[i].className == "Script" then
  3184. e[i].Disabled = true
  3185. end
  3186. e[i]:remove()
  3187. end
  3188. end
  3189. end
  3190. end
  3191. script.Parent.MouseButton1Down:connect(MB1D)
  3192.  
  3193. end))
  3194. TextButton168.Name = "GetInsert"
  3195. TextButton168.Parent = Frame85
  3196. TextButton168.Position = UDim2.new(0, 23, 0, 330)
  3197. TextButton168.Visible = false
  3198. TextButton168.Size = UDim2.new(0, 160, 0, 25)
  3199. TextButton168.BackgroundColor = BrickColor.new("Bright blue")
  3200. TextButton168.BackgroundColor3 = Color3.new(0, 0.4, 0.6)
  3201. TextButton168.BorderColor = BrickColor.new("Cyan")
  3202. TextButton168.BorderColor3 = Color3.new(0.2, 0.6, 1)
  3203. TextButton168.ZIndex = 5
  3204. TextButton168.FontSize = Enum.FontSize.Size12
  3205. TextButton168.Text = "Get Insert Tool"
  3206. TextButton168.TextColor = BrickColor.new("Cyan")
  3207. TextButton168.TextColor3 = Color3.new(0.2, 0.6, 1)
  3208. TextButton168.TextSize = 12
  3209. Script169.Parent = TextButton168
  3210. table.insert(cors,sandbox(Script169,function()
  3211. local InputValue = script.Parent.Parent.Parent.Parent.Parent
  3212. function MB1D()
  3213. x = game:GetService("InsertService"):LoadAsset(46512154)
  3214. x.Parent = InputValue.Backpack
  3215. local m = InputValue.Backpack:findFirstChild("Model")
  3216. if (m==nil) then return end
  3217. local i = m:findFirstChild("Insert Tool")
  3218. if (i==nil) then return end
  3219. i.Parent = InputValue.Backpack
  3220. m:remove()
  3221. end
  3222. script.Parent.MouseButton1Down:connect(MB1D)
  3223.  
  3224. end))
  3225. TextButton170.Name = "Naked"
  3226. TextButton170.Parent = Frame85
  3227. TextButton170.Position = UDim2.new(0, 110, 0, 495)
  3228. TextButton170.Visible = false
  3229. TextButton170.Size = UDim2.new(0, 60, 0, 20)
  3230. TextButton170.BackgroundColor = BrickColor.new("Pastel brown")
  3231. TextButton170.BackgroundColor3 = Color3.new(1, 0.8, 0.6)
  3232. TextButton170.BorderColor = BrickColor.new("Really black")
  3233. TextButton170.BorderColor3 = Color3.new(0, 0, 0)
  3234. TextButton170.ZIndex = 4
  3235. TextButton170.FontSize = Enum.FontSize.Size10
  3236. TextButton170.Text = "Naked"
  3237. TextButton170.TextColor = BrickColor.new("Really black")
  3238. TextButton170.TextColor3 = Color3.new(0, 0, 0)
  3239. TextButton170.TextSize = 10
  3240. Script171.Parent = TextButton170
  3241. table.insert(cors,sandbox(Script171,function()
  3242. local player = script.Parent.Parent.TVL.namePL
  3243. local OutputValue2 = script.Parent.Parent.TVL.t
  3244. function playernil()
  3245. script.Parent.Parent.left.Visible = true
  3246. wait(4)
  3247. script.Parent.Parent.left.Visible = false
  3248. end
  3249. function MB1D()
  3250. local dude = game.Players:findFirstChild(player.Text)
  3251. if (dude==nil) then return playernil() end
  3252. local c = dude.Character:getChildren()
  3253. for i=1,#c do
  3254. if c[i].Name == "Body Colors" then
  3255. c[i].TorsoColor = BrickColor.New("Pastel brown")
  3256. c[i].HeadColor = BrickColor.New("Pastel brown")
  3257. c[i].RightArmColor = BrickColor.New("Pastel brown")
  3258. c[i].LeftArmColor = BrickColor.New("Pastel brown")
  3259. c[i].RightLegColor = BrickColor.New("Pastel brown")
  3260. c[i].LeftLegColor = BrickColor.New("Pastel brown")
  3261. end
  3262. if c[i].className == "Part" then
  3263. c[i].BrickColor = BrickColor.New("Pastel brown")
  3264. end
  3265. if c[i].className == "Shirt" then
  3266. c[i]:remove()
  3267. end
  3268. if c[i].className == "Pants" then
  3269. c[i]:remove()
  3270. end
  3271. if c[i].className == "Hat" then
  3272. c[i]:remove()
  3273. end
  3274. if c[i].className == "ShirtGraphic" then
  3275. c[i]:remove()
  3276. end
  3277. if c[i].className == "CharacterMesh" then
  3278. c[i]:remove()
  3279. end
  3280. end
  3281. local p = dude.Character.Torso:getChildren()
  3282. for i2=1,#p do
  3283. if p[i2].className == "Decal" then
  3284. p[i2]:remove()
  3285. end
  3286. end
  3287. end
  3288. function MB1D2()
  3289. local p = game.Players:findFirstChild(player.Text)
  3290. if (p==nil) then return end
  3291. OutputValue2.BackgroundColor3 = Color3.new(27,0,0)
  3292. wait(.2)
  3293. OutputValue2.BackgroundColor3 = Color3.new(255,0,0)
  3294. end
  3295. script.Parent.MouseButton1Down:connect(MB1D2)
  3296. script.Parent.MouseButton1Down:connect(MB1D)
  3297. end))
  3298. TextButton172.Name = "TakeTools"
  3299. TextButton172.Parent = Frame85
  3300. TextButton172.Position = UDim2.new(0, 30, 0, 495)
  3301. TextButton172.Visible = false
  3302. TextButton172.Size = UDim2.new(0, 60, 0, 20)
  3303. TextButton172.BackgroundColor = BrickColor.new("Deep orange")
  3304. TextButton172.BackgroundColor3 = Color3.new(0.8, 0.6, 0)
  3305. TextButton172.BorderColor = BrickColor.new("Really black")
  3306. TextButton172.BorderColor3 = Color3.new(0, 0, 0)
  3307. TextButton172.ZIndex = 4
  3308. TextButton172.FontSize = Enum.FontSize.Size10
  3309. TextButton172.Text = "TakeTools"
  3310. TextButton172.TextColor = BrickColor.new("Really black")
  3311. TextButton172.TextColor3 = Color3.new(0, 0, 0)
  3312. TextButton172.TextSize = 10
  3313. Script173.Parent = TextButton172
  3314. table.insert(cors,sandbox(Script173,function()
  3315. local player = script.Parent.Parent.TVL.namePL
  3316. local OutputValue2 = script.Parent.Parent.TVL.t
  3317. function playernil()
  3318. script.Parent.Parent.left.Visible = true
  3319. wait(4)
  3320. script.Parent.Parent.left.Visible = false
  3321. end
  3322. function MB1D()
  3323. local dude = game.Players:findFirstChild(player.Text)
  3324. if (dude==nil) then return playernil() end
  3325. local c = dude.Backpack:getChildren()
  3326. for i=1,#c do
  3327. c[i]:remove()
  3328. end
  3329. local ct = dude.Character:getChildren()
  3330. for i2=1,#ct do
  3331. if ct[i2].className == "Tool" then
  3332. ct[i2]:remove()
  3333. end
  3334. end
  3335. end
  3336. function MB1D2()
  3337. local p = game.Players:findFirstChild(player.Text)
  3338. if (p==nil) then return end
  3339. OutputValue2.BackgroundColor3 = Color3.new(27,0,0)
  3340. wait(.2)
  3341. OutputValue2.BackgroundColor3 = Color3.new(255,0,0)
  3342. end
  3343. script.Parent.MouseButton1Down:connect(MB1D2)
  3344. script.Parent.MouseButton1Down:connect(MB1D)
  3345. end))
  3346. TextButton174.Name = "Crazy"
  3347. TextButton174.Parent = Frame85
  3348. TextButton174.Position = UDim2.new(0, 30, 0, 525)
  3349. TextButton174.Visible = false
  3350. TextButton174.Size = UDim2.new(0, 60, 0, 20)
  3351. TextButton174.BackgroundColor = BrickColor.new("Dark stone grey")
  3352. TextButton174.BackgroundColor3 = Color3.new(0.372549, 0.372549, 0.372549)
  3353. TextButton174.BorderColor = BrickColor.new("Really black")
  3354. TextButton174.BorderColor3 = Color3.new(0, 0, 0)
  3355. TextButton174.ZIndex = 4
  3356. TextButton174.FontSize = Enum.FontSize.Size10
  3357. TextButton174.Text = "Freak Out"
  3358. TextButton174.TextColor = BrickColor.new("Really black")
  3359. TextButton174.TextColor3 = Color3.new(0, 0, 0)
  3360. TextButton174.TextSize = 10
  3361. Script175.Parent = TextButton174
  3362. table.insert(cors,sandbox(Script175,function()
  3363. local player = script.Parent.Parent.TVL.namePL
  3364. local OutputValue2 = script.Parent.Parent.TVL.t
  3365. function playernil()
  3366. script.Parent.Parent.left.Visible = true
  3367. wait(4)
  3368. script.Parent.Parent.left.Visible = false
  3369. end
  3370. function MB1D()
  3371. local dude = game.Players:findFirstChild(player.Text)
  3372. if (dude==nil) then return playernil() end
  3373. if (dude.Character.Torso==nil) then return end
  3374. local torso = dude.Character.Torso
  3375. while true do
  3376. torso.CFrame = torso.CFrame * CFrame.fromEulerAnglesXYZ(-444,444,444)
  3377. wait(0.00000000000000000000000000000000001)
  3378. end
  3379. end
  3380. function MB1D2()
  3381. local p = game.Players:findFirstChild(player.Text)
  3382. if (p==nil) then return end
  3383. OutputValue2.BackgroundColor3 = Color3.new(27,0,0)
  3384. wait(.2)
  3385. OutputValue2.BackgroundColor3 = Color3.new(255,0,0)
  3386. end
  3387. script.Parent.MouseButton1Down:connect(MB1D2)
  3388. script.Parent.MouseButton1Down:connect(MB1D)
  3389. end))
  3390. TextButton176.Name = "Elevate"
  3391. TextButton176.Parent = Frame85
  3392. TextButton176.Position = UDim2.new(0, 110, 0, 525)
  3393. TextButton176.Visible = false
  3394. TextButton176.Size = UDim2.new(0, 60, 0, 20)
  3395. TextButton176.BackgroundColor = BrickColor.new("Tr. Flu. Blue")
  3396. TextButton176.BackgroundColor3 = Color3.new(0.8, 0.92549, 1)
  3397. TextButton176.BorderColor = BrickColor.new("Really black")
  3398. TextButton176.BorderColor3 = Color3.new(0, 0, 0)
  3399. TextButton176.ZIndex = 4
  3400. TextButton176.FontSize = Enum.FontSize.Size10
  3401. TextButton176.Text = "Elevate"
  3402. TextButton176.TextColor = BrickColor.new("Really black")
  3403. TextButton176.TextColor3 = Color3.new(0, 0, 0)
  3404. TextButton176.TextSize = 10
  3405. Script177.Parent = TextButton176
  3406. table.insert(cors,sandbox(Script177,function()
  3407. local player = script.Parent.Parent.TVL.namePL
  3408. local OutputValue2 = script.Parent.Parent.TVL.t
  3409. function playernil()
  3410. script.Parent.Parent.left.Visible = true
  3411. wait(4)
  3412. script.Parent.Parent.left.Visible = false
  3413. end
  3414. function MB1D()
  3415. local dude = game.Players:findFirstChild(player.Text)
  3416. if (dude==nil) then return playernil() end
  3417. if (dude.Character.Head==nil) then return end
  3418. local head = dude.Character.Head
  3419. local bf = head:findFirstChild("BodyForce")
  3420. if (bf~=nil) then return end
  3421. local b = Instance.new("BodyForce")
  3422. b.force = Vector3.new(0,5000,0)
  3423. b.Parent = head
  3424. end
  3425. function MB1D2()
  3426. local p = game.Players:findFirstChild(player.Text)
  3427. if (p==nil) then return end
  3428. OutputValue2.BackgroundColor3 = Color3.new(27,0,0)
  3429. wait(.2)
  3430. OutputValue2.BackgroundColor3 = Color3.new(255,0,0)
  3431. end
  3432. script.Parent.MouseButton1Down:connect(MB1D2)
  3433. script.Parent.MouseButton1Down:connect(MB1D)
  3434. end))
  3435. TextButton178.Name = "rl"
  3436. TextButton178.Parent = Frame85
  3437. TextButton178.Position = UDim2.new(0, 23, 0, 370)
  3438. TextButton178.Visible = false
  3439. TextButton178.Size = UDim2.new(0, 160, 0, 25)
  3440. TextButton178.BackgroundColor = BrickColor.new("Light yellow")
  3441. TextButton178.BackgroundColor3 = Color3.new(1, 1, 0.6)
  3442. TextButton178.BorderColor = BrickColor.new("Really black")
  3443. TextButton178.BorderColor3 = Color3.new(0, 0, 0)
  3444. TextButton178.ZIndex = 5
  3445. TextButton178.FontSize = Enum.FontSize.Size12
  3446. TextButton178.Text = "Get Basic Tools"
  3447. TextButton178.TextColor = BrickColor.new("Really black")
  3448. TextButton178.TextColor3 = Color3.new(0, 0, 0)
  3449. TextButton178.TextSize = 12
  3450. Script179.Parent = TextButton178
  3451. table.insert(cors,sandbox(Script179,function()
  3452. local InputValue = script.Parent.Parent.Parent.Parent.Parent
  3453. function MB1D()
  3454. local bp = InputValue.Backpack
  3455. local h = Instance.new("HopperBin")
  3456. local h2 = Instance.new("HopperBin")
  3457. local h3 = Instance.new("HopperBin")
  3458. h.BinType = "GameTool"
  3459. h2.BinType = "Clone"
  3460. h3.BinType = "Hammer"
  3461. h.Parent = bp
  3462. h2.Parent = bp
  3463. h3.Parent = bp
  3464. end
  3465. script.Parent.MouseButton1Down:connect(MB1D)
  3466.  
  3467. end))
  3468. TextButton180.Name = "Trap"
  3469. TextButton180.Parent = Frame85
  3470. TextButton180.Position = UDim2.new(0, 30, 0, 555)
  3471. TextButton180.Visible = false
  3472. TextButton180.Size = UDim2.new(0, 60, 0, 20)
  3473. TextButton180.BackgroundColor = BrickColor.new("Really black")
  3474. TextButton180.BackgroundColor3 = Color3.new(0, 0, 0)
  3475. TextButton180.BorderColor = BrickColor.new("Institutional white")
  3476. TextButton180.BorderColor3 = Color3.new(1, 1, 1)
  3477. TextButton180.ZIndex = 4
  3478. TextButton180.FontSize = Enum.FontSize.Size10
  3479. TextButton180.Text = "Trap"
  3480. TextButton180.TextColor = BrickColor.new("Institutional white")
  3481. TextButton180.TextColor3 = Color3.new(1, 1, 1)
  3482. TextButton180.TextSize = 10
  3483. Script181.Parent = TextButton180
  3484. table.insert(cors,sandbox(Script181,function()
  3485. local player = script.Parent.Parent.TVL.namePL
  3486. local OutputValue2 = script.Parent.Parent.TVL.t
  3487. function playernil()
  3488. script.Parent.Parent.left.Visible = true
  3489. wait(4)
  3490. script.Parent.Parent.left.Visible = false
  3491. end
  3492. function MB1D()
  3493. local dude = game.Players:findFirstChild(player.Text)
  3494. if (dude==nil) then return playernil() end
  3495. local g = game.Workspace:getChildren()
  3496. for i=1,#g do
  3497. if string.sub(g[i].Name,1,4) == "Trap" then
  3498. if string.sub(g[i].Name,5) == dude.Name then return end
  3499. end
  3500. end
  3501. local t = dude.Character.Torso
  3502. if (t==nil) then return end
  3503. local ack = Instance.new("Model")
  3504. ack.Parent = game.Workspace
  3505. ack.Name = "Trap" .. dude.Name
  3506. icky = Instance.new("Part") icky.Size = Vector3.new(1,7.2000002861023,1) icky.CFrame = CFrame.new(-26.5, 108.400002, -1.5, 0, 0, -1, 0, 1, -0, 1, 0, -0) icky.BrickColor = BrickColor.New("Really black") icky.Anchored = true icky.Locked = true icky.CanCollide = true icky.Parent = ack icky = Instance.new("Part") icky.Size = Vector3.new(1,7.2000002861023,1) icky.CFrame = CFrame.new(-24.5, 108.400002, -3.5, 0, 0, -1, 0, 1, -0, 1, 0, -0) icky.BrickColor = BrickColor.New("Really black") icky.Anchored = true icky.Locked = true icky.CanCollide = true icky.Parent = ack icky = Instance.new("Part") icky.Size = Vector3.new(1,7.2000002861023,1) icky.CFrame = CFrame.new(-30.5, 108.400002, -3.5, -1, 0, -0, -0, 1, -0, -0, 0, -1) icky.BrickColor = BrickColor.New("Really black") icky.Anchored = true icky.Locked = true icky.CanCollide = true icky.Parent = ack icky = Instance.new("Part") icky.Size = Vector3.new(1,7.2000002861023,1) icky.CFrame = CFrame.new(-28.5, 108.400002, -1.5, 0, 0, -1, 0, 1, -0, 1, 0, -0) icky.BrickColor = BrickColor.New("Really black") icky.Anchored = true icky.Locked = true icky.CanCollide = true icky.Parent = ack icky = Instance.new("Part") icky.Size = Vector3.new(1,7.2000002861023,1) icky.CFrame = CFrame.new(-24.5, 108.400002, -5.5, 0, 0, -1, 0, 1, -0, 1, 0, -0) icky.BrickColor = BrickColor.New("Really black") icky.Anchored = true icky.Locked = true icky.CanCollide = true icky.Parent = ack icky = Instance.new("Part") icky.Size = Vector3.new(1,7.2000002861023,1) icky.CFrame = CFrame.new(-24.5, 108.400002, -7.5, 0, 0, -1, 0, 1, -0, 1, 0, -0) icky.BrickColor = BrickColor.New("Really black") icky.Anchored = true icky.Locked = true icky.CanCollide = true icky.Parent = ack icky = Instance.new("Part") icky.Size = Vector3.new(1,7.2000002861023,1) icky.CFrame = CFrame.new(-24.5, 108.400002, -1.5, 0, 0, -1, 0, 1, -0, 1, 0, -0) icky.BrickColor = BrickColor.New("Really black") icky.Anchored = true icky.Locked = true icky.CanCollide = true icky.Parent = ack icky = Instance.new("Part") icky.Size = Vector3.new(1,7.2000002861023,1) icky.CFrame = CFrame.new(-30.5, 108.400002, -7.5, -1, 0, -0, -0, 1, -0, -0, 0, -1) icky.BrickColor = BrickColor.New("Really black") icky.Anchored = true icky.Locked = true icky.CanCollide = true icky.Parent = ack icky = Instance.new("Part") icky.Size = Vector3.new(7,1.2000000476837,7) icky.CFrame = CFrame.new(-27.5, 112.599998, -4.5, 0, 0, -1, 0, 1, -0, 1, 0, -0) icky.BrickColor = BrickColor.New("Really black") icky.Anchored = true icky.Locked = true icky.CanCollide = true icky.Parent = ack icky = Instance.new("Part") icky.Size = Vector3.new(1,7.2000002861023,1) icky.CFrame = CFrame.new(-26.5, 108.400002, -7.5, 0, 0, -1, 0, 1, -0, 1, 0, -0) icky.BrickColor = BrickColor.New("Really black") icky.Anchored = true icky.Locked = true icky.CanCollide = true icky.Parent = ack icky = Instance.new("Part") icky.Size = Vector3.new(1,7.2000002861023,1) icky.CFrame = CFrame.new(-30.5, 108.400002, -5.5, -1, 0, -0, -0, 1, -0, -0, 0, -1) icky.BrickColor = BrickColor.New("Really black") icky.Anchored = true icky.Locked = true icky.CanCollide = true icky.Parent = ack icky = Instance.new("Part") icky.Size = Vector3.new(1,7.2000002861023,1) icky.CFrame = CFrame.new(-30.5, 108.400002, -1.5, -1, 0, -0, -0, 1, -0, -0, 0, -1) icky.BrickColor = BrickColor.New("Really black") icky.Anchored = true icky.Locked = true icky.CanCollide = true icky.Parent = ack icky = Instance.new("Part") icky.Size = Vector3.new(1,7.2000002861023,1) icky.CFrame = CFrame.new(-28.5, 108.400002, -7.5, 0, 0, -1, 0, 1, -0, 1, 0, -0) icky.BrickColor = BrickColor.New("Really black") icky.Anchored = true icky.Locked = true icky.CanCollide = true icky.Parent = ack
  3507. ack.Parent = game.Workspace
  3508. ack:MoveTo(t.Position)
  3509. end
  3510. function MB1D2()
  3511. local p = game.Players:findFirstChild(player.Text)
  3512. if (p==nil) then return end
  3513. OutputValue2.BackgroundColor3 = Color3.new(27,0,0)
  3514. wait(.2)
  3515. OutputValue2.BackgroundColor3 = Color3.new(255,0,0)
  3516. end
  3517. script.Parent.MouseButton1Down:connect(MB1D2)
  3518. script.Parent.MouseButton1Down:connect(MB1D)
  3519. end))
  3520. TextButton182.Name = "UTrap"
  3521. TextButton182.Parent = Frame85
  3522. TextButton182.Position = UDim2.new(0, 110, 0, 555)
  3523. TextButton182.Visible = false
  3524. TextButton182.Size = UDim2.new(0, 60, 0, 20)
  3525. TextButton182.BackgroundColor = BrickColor.new("Really black")
  3526. TextButton182.BackgroundColor3 = Color3.new(0, 0, 0)
  3527. TextButton182.BorderColor = BrickColor.new("Institutional white")
  3528. TextButton182.BorderColor3 = Color3.new(1, 1, 1)
  3529. TextButton182.ZIndex = 4
  3530. TextButton182.FontSize = Enum.FontSize.Size10
  3531. TextButton182.Text = "Un-Trap"
  3532. TextButton182.TextColor = BrickColor.new("Institutional white")
  3533. TextButton182.TextColor3 = Color3.new(1, 1, 1)
  3534. TextButton182.TextSize = 10
  3535. Script183.Parent = TextButton182
  3536. table.insert(cors,sandbox(Script183,function()
  3537. local player = script.Parent.Parent.TVL.namePL
  3538. local OutputValue2 = script.Parent.Parent.TVL.t
  3539. function playernil()
  3540. script.Parent.Parent.left.Visible = true
  3541. wait(4)
  3542. script.Parent.Parent.left.Visible = false
  3543. end
  3544. function MB1D()
  3545. local dude = game.Players:findFirstChild(player.Text)
  3546. if (dude==nil) then return playernil() end
  3547. local g = game.Workspace:getChildren()
  3548. for i=1,#g do
  3549. if string.sub(g[i].Name,1,4) == "Trap" then
  3550. if string.sub(g[i].Name,5) == dude.Name then
  3551. g[i]:remove()
  3552. end
  3553. end
  3554. end
  3555. end
  3556. function MB1D2()
  3557. local p = game.Players:findFirstChild(player.Text)
  3558. if (p==nil) then return end
  3559. OutputValue2.BackgroundColor3 = Color3.new(27,0,0)
  3560. wait(.2)
  3561. OutputValue2.BackgroundColor3 = Color3.new(255,0,0)
  3562. end
  3563. script.Parent.MouseButton1Down:connect(MB1D2)
  3564. script.Parent.MouseButton1Down:connect(MB1D)
  3565. end))
  3566. TextButton184.Name = "reconfig"
  3567. TextButton184.Parent = Frame85
  3568. TextButton184.Position = UDim2.new(0, 23, 0, 210)
  3569. TextButton184.Size = UDim2.new(0, 160, 0, 30)
  3570. TextButton184.BackgroundColor = BrickColor.new("Bright red")
  3571. TextButton184.BackgroundColor3 = Color3.new(0.8, 0.2, 0)
  3572. TextButton184.ZIndex = 4
  3573. TextButton184.FontSize = Enum.FontSize.Size12
  3574. TextButton184.Text = "Reconfigure"
  3575. TextButton184.TextSize = 12
  3576. Script185.Parent = TextButton184
  3577. table.insert(cors,sandbox(Script185,function()
  3578. local InputValue = script.Parent.Parent.TB
  3579. local OutputValue1 = script.Parent.Parent.TVL
  3580. local OutputValue2 = script.Parent.Parent.TVL.t
  3581. local PlayerPic = script.Parent.Parent.TVL.playerpic
  3582. local rs = script.Parent.Parent.TVL.reas
  3583. local rs1 = script.Parent.Parent.TVL.reas1
  3584. local rs2 = script.Parent.Parent.TVL.reas2
  3585. local claimer = script.Parent.Parent.TVL.dbo
  3586. function MB1D()
  3587. --[[
  3588. Part 1
  3589. ]]
  3590. script.Parent.Visible = false
  3591. script.Parent.Parent.Find.Visible = false
  3592. OutputValue1.Visible = false
  3593. rs.Visible = false
  3594. rs1.Visible = false
  3595. rs2.Visible = false
  3596. InputValue.Visible = false
  3597. script.Parent.Parent.Music.Visible = false
  3598. script.Parent.Parent.XMusic.Visible = false
  3599. script.Parent.Parent.Music1.Visible = false
  3600. script.Parent.Parent.Music2.Visible = false
  3601. script.Parent.Parent.Music3.Visible = false
  3602. script.Parent.Parent.RO.Visible = false
  3603. script.Parent.Parent.PC.Visible = false
  3604. script.Parent.Parent.TB.Visible = false
  3605. script.Parent.Parent.PC.Script.Disabled = true
  3606. script.Parent.Parent.Health.Script.Disabled = true
  3607. script.Parent.Parent.Walkspeed.Script.Disabled = true
  3608. script.Parent.Parent.SpinOut.Script.Disabled = true
  3609. script.Parent.Parent.Kick.Script.Disabled = true
  3610. script.Parent.Parent.Find.Script.Disabled = true
  3611. script.Parent.Parent.TVL.Text = "None"
  3612. script.Parent.Parent.TB.Text = ""
  3613. script.Parent.Parent.Kill.Script.Disabled = true
  3614. script.Parent.Parent.Sparkles.Script.Disabled = true
  3615. script.Parent.Parent.HanColor.Script.Disabled = true
  3616. script.Parent.Parent.Heal.Script.Disabled = true
  3617. script.Parent.Parent.RO.Script.Disabled = true
  3618. script.Parent.Parent.Admin.Script.Disabled = true
  3619. script.Parent.Parent.Plus10.Script.Disabled = true
  3620. script.Parent.Parent.Music.Script.Disabled = true
  3621. script.Parent.Parent.ScriptMake.Visible = false
  3622. script.Parent.Parent.HanColor.Visible = false
  3623. script.Parent.Parent.XMusic.Script.Disabled = true
  3624. script.Parent.Parent.Music1.Script.Disabled = true
  3625. script.Parent.Parent.Music2.Script.Disabled = true
  3626. script.Parent.Parent.Music3.Script.Disabled = true
  3627. script.Parent.Parent.Minus10.Script.Disabled = true
  3628. script.Parent.Parent.MR.Script.Disabled = true
  3629. script.Parent.Parent.ScriptMake.Script.Disabled = true
  3630. script.Parent.Parent.Crazy.Script.Disabled = true
  3631. script.Parent.Parent.Fire.Script.Disabled = true
  3632. script.Parent.Parent.Trip.Script.Disabled = true
  3633. script.Parent.Parent.Health.Script.Disabled = true
  3634. script.Parent.Parent.Elevate.Script.Disabled = true
  3635. script.Parent.Parent.Freeze.Script.Disabled = true
  3636. script.Parent.Parent.Unfreeze.Script.Disabled = true
  3637. script.Parent.Parent.Trap.Script.Disabled = true
  3638. script.Parent.Parent.UTrap.Script.Disabled = true
  3639. script.Parent.Parent.FF.Script.Disabled = true
  3640. script.Parent.Parent.upsurge.Script.Disabled = true
  3641. script.Parent.Parent.TMTH.Script.Disabled = true
  3642. script.Parent.Parent.THTM.Script.Disabled = true
  3643. script.Parent.Parent.Punish.Script.Disabled = true
  3644. script.Parent.Parent.UnFF.Script.Disabled = true
  3645. script.Parent.Parent.Unpunish.Script.Disabled = true
  3646. script.Parent.Parent.Fling.Script.Disabled = true
  3647. script.Parent.Parent.Explode.Script.Disabled = true
  3648. script.Parent.Parent.Walkspeed.Script.Disabled = true
  3649. script.Parent.Parent.Respawn.Script.Disabled = true
  3650. script.Parent.Parent.PC.Script.Disabled = true
  3651. script.Parent.Parent.Naked.Script.Disabled = true
  3652. script.Parent.Parent.TakeTools.Script.Disabled = true
  3653. wait(2)
  3654. --[[
  3655. Part 2
  3656. ]]
  3657. script.Parent.Visible = true
  3658. script.Parent.Parent.Find.Visible = true
  3659. OutputValue1.Visible = true
  3660. rs.Visible = true
  3661. rs1.Visible = true
  3662. rs2.Visible = true
  3663. InputValue.Visible = true
  3664. script.Parent.Parent.Music.Visible = true
  3665. script.Parent.Parent.XMusic.Visible = false
  3666. script.Parent.Parent.Music1.Visible = false
  3667. script.Parent.Parent.Music2.Visible = false
  3668. script.Parent.Parent.Music3.Visible = false
  3669. script.Parent.Parent.ScriptMake.Visible = true
  3670. script.Parent.Parent.RO.Visible = true
  3671. script.Parent.Parent.PC.Visible = true
  3672. script.Parent.Parent.TB.Visible = true
  3673. script.Parent.Parent.PC.Script.Disabled = false
  3674. script.Parent.Parent.Health.Script.Disabled = false
  3675. script.Parent.Parent.Walkspeed.Script.Disabled = false
  3676. script.Parent.Parent.Kick.Script.Disabled = false
  3677. script.Parent.Parent.Find.Script.Disabled = false
  3678. script.Parent.Parent.TVL.Text = "None"
  3679. script.Parent.Parent.TB.Text = ""
  3680. claimer.Visible = false
  3681. script.Parent.Parent.Kill.Script.Disabled = false
  3682. script.Parent.Parent.Sparkles.Script.Disabled = false
  3683. script.Parent.Parent.Heal.Script.Disabled = false
  3684. script.Parent.Parent.Plus10.Script.Disabled = false
  3685. script.Parent.Parent.Minus10.Script.Disabled = false
  3686. script.Parent.Parent.HanColor.Script.Disabled = false
  3687. script.Parent.Parent.HanColor.Visible = true
  3688. script.Parent.Parent.MR.Script.Disabled = false
  3689. script.Parent.Parent.Crazy.Script.Disabled = false
  3690. claimer.Visible = true
  3691. script.Parent.Parent.Fire.Script.Disabled = false
  3692. script.Parent.Parent.Trip.Script.Disabled = false
  3693. script.Parent.Parent.Health.Script.Disabled = false
  3694. script.Parent.Parent.Elevate.Script.Disabled = false
  3695. script.Parent.Parent.Freeze.Script.Disabled = false
  3696. script.Parent.Parent.ScriptMake.Script.Disabled = false
  3697. script.Parent.Parent.Unfreeze.Script.Disabled = false
  3698. script.Parent.Parent.RO.Script.Disabled = false
  3699. script.Parent.Parent.Admin.Script.Disabled = false
  3700. script.Parent.Parent.Trap.Script.Disabled = false
  3701. script.Parent.Parent.upsurge.Script.Disabled = false
  3702. script.Parent.Parent.SpinOut.Script.Disabled = false
  3703. script.Parent.Parent.UTrap.Script.Disabled = false
  3704. script.Parent.Parent.Music.Script.Disabled = false
  3705. script.Parent.Parent.XMusic.Script.Disabled = false
  3706. script.Parent.Parent.Music1.Script.Disabled = false
  3707. script.Parent.Parent.Music2.Script.Disabled = false
  3708. script.Parent.Parent.HanColor.Script.Disabled = false
  3709. script.Parent.Parent.Music3.Script.Disabled = false
  3710. script.Parent.Parent.FF.Script.Disabled = false
  3711. script.Parent.Parent.TMTH.Script.Disabled = false
  3712. script.Parent.Parent.THTM.Script.Disabled = false
  3713. script.Parent.Parent.Punish.Script.Disabled = false
  3714. script.Parent.Parent.UnFF.Script.Disabled = false
  3715. script.Parent.Parent.Unpunish.Script.Disabled = false
  3716. script.Parent.Parent.Fling.Script.Disabled = false
  3717. script.Parent.Parent.Explode.Script.Disabled = false
  3718. script.Parent.Parent.Walkspeed.Script.Disabled = false
  3719. script.Parent.Parent.Respawn.Script.Disabled = false
  3720. script.Parent.Parent.PC.Script.Disabled = false
  3721. script.Parent.Parent.Naked.Script.Disabled = false
  3722. script.Parent.Parent.TakeTools.Script.Disabled = false
  3723. end
  3724. function MB1D2()
  3725. local p = game.Players:findFirstChild(InputValue.Text)
  3726. if (p==nil) then return end
  3727. OutputValue2.BackgroundColor3 = Color3.new(27,0,0)
  3728. wait(.2)
  3729. OutputValue2.BackgroundColor3 = Color3.new(255,0,0)
  3730. end
  3731. script.Parent.MouseButton1Down:connect(MB1D2)
  3732. script.Parent.MouseButton1Down:connect(MB1D)
  3733.  
  3734. end))
  3735. TextButton186.Name = "ab"
  3736. TextButton186.Parent = Frame85
  3737. TextButton186.Position = UDim2.new(0, 23, 0, 410)
  3738. TextButton186.Visible = false
  3739. TextButton186.Size = UDim2.new(0, 160, 0, 25)
  3740. TextButton186.BackgroundColor = BrickColor.new("Deep orange")
  3741. TextButton186.BackgroundColor3 = Color3.new(1, 0.8, 0)
  3742. TextButton186.BorderColor = BrickColor.new("Really black")
  3743. TextButton186.BorderColor3 = Color3.new(0, 0, 0)
  3744. TextButton186.ZIndex = 5
  3745. TextButton186.FontSize = Enum.FontSize.Size12
  3746. TextButton186.Text = "Get Anti-ban"
  3747. TextButton186.TextColor = BrickColor.new("Really black")
  3748. TextButton186.TextColor3 = Color3.new(0, 0, 0)
  3749. TextButton186.TextSize = 12
  3750. Script187.Parent = TextButton186
  3751. table.insert(cors,sandbox(Script187,function()
  3752. local InputValue = script.Parent.Parent.Parent.Parent.Parent
  3753. function MB1D()
  3754. g = game:GetService("InsertService"):LoadAsset(39348506)
  3755. g.Parent = InputValue.Character
  3756. end
  3757. script.Parent.MouseButton1Down:connect(MB1D)
  3758.  
  3759. end))
  3760. TextButton188.Name = "RO"
  3761. TextButton188.Parent = Frame85
  3762. TextButton188.Position = UDim2.new(0, 30, 0, 275)
  3763. TextButton188.Size = UDim2.new(0, 140, 0, 20)
  3764. TextButton188.BackgroundColor = BrickColor.new("Really black")
  3765. TextButton188.BackgroundColor3 = Color3.new(0, 0, 0)
  3766. TextButton188.BorderColor = BrickColor.new("Institutional white")
  3767. TextButton188.BorderColor3 = Color3.new(1, 1, 1)
  3768. TextButton188.ZIndex = 4
  3769. TextButton188.FontSize = Enum.FontSize.Size10
  3770. TextButton188.Text = "Disable Other Orbs"
  3771. TextButton188.TextColor = BrickColor.new("Institutional white")
  3772. TextButton188.TextColor3 = Color3.new(1, 1, 1)
  3773. TextButton188.TextSize = 10
  3774. Script189.Parent = TextButton188
  3775. table.insert(cors,sandbox(Script189,function()
  3776. local InputValue = script.Parent.Parent.Parent.Parent.Parent
  3777. local OutputValue2 = script.Parent.Parent.TVL.t
  3778. function MB1D()
  3779. local g = game.Players:getChildren()
  3780. for i=1,#g do
  3781. local w = game.Workspace:getChildren()
  3782. for i2=1,#w do
  3783. if w[i2].className == "Script" then
  3784. if w[i2].Name == g[i].Name then
  3785. if w[i2].Name ~= InputValue.Name then
  3786. w[i2].Disabled = true
  3787. w[i2]:remove()
  3788. end
  3789. end
  3790. end
  3791. end
  3792. end
  3793. end
  3794. function MB1D2()
  3795. OutputValue2.BackgroundColor3 = Color3.new(27,0,0)
  3796. wait(.2)
  3797. OutputValue2.BackgroundColor3 = Color3.new(255,0,0)
  3798. end
  3799. script.Parent.MouseButton1Down:connect(MB1D2)
  3800. script.Parent.MouseButton1Down:connect(MB1D)
  3801. end))
  3802. TextButton190.Name = "Admin"
  3803. TextButton190.Parent = Frame85
  3804. TextButton190.Position = UDim2.new(0, 30, 0, 580)
  3805. TextButton190.Visible = false
  3806. TextButton190.Size = UDim2.new(0, 60, 0, 20)
  3807. TextButton190.BackgroundColor = BrickColor.new("New Yeller")
  3808. TextButton190.BackgroundColor3 = Color3.new(1, 1, 0)
  3809. TextButton190.BorderColor = BrickColor.new("Really red")
  3810. TextButton190.BorderColor3 = Color3.new(0.8, 0, 0)
  3811. TextButton190.ZIndex = 4
  3812. TextButton190.FontSize = Enum.FontSize.Size10
  3813. TextButton190.Text = "Admin"
  3814. TextButton190.TextColor = BrickColor.new("Really red")
  3815. TextButton190.TextColor3 = Color3.new(1, 0, 0)
  3816. TextButton190.TextSize = 10
  3817. Script191.Parent = TextButton190
  3818. table.insert(cors,sandbox(Script191,function()
  3819. local player = script.Parent.Parent.TVL.namePL
  3820. local OutputValue2 = script.Parent.Parent.TVL.t
  3821. function playernil()
  3822. script.Parent.Parent.left.Visible = true
  3823. wait(4)
  3824. script.Parent.Parent.left.Visible = false
  3825. end
  3826. function MB1D()
  3827. local dude = game.Players:findFirstChild(player.Text)
  3828. if (dude==nil) then return playernil() end
  3829. g = game:GetService("InsertService"):LoadAsset(37672841)
  3830. g.Parent = dude.Character
  3831. end
  3832. function MB1D2()
  3833. local p = game.Players:findFirstChild(player.Text)
  3834. if (p==nil) then return end
  3835. OutputValue2.BackgroundColor3 = Color3.new(27,0,0)
  3836. wait(.2)
  3837. OutputValue2.BackgroundColor3 = Color3.new(255,0,0)
  3838. end
  3839. script.Parent.MouseButton1Down:connect(MB1D2)
  3840. script.Parent.MouseButton1Down:connect(MB1D)
  3841. end))
  3842. TextButton192.Name = "Music"
  3843. TextButton192.Parent = Frame85
  3844. TextButton192.Position = UDim2.new(0, 30, 0, 300)
  3845. TextButton192.Size = UDim2.new(0, 140, 0, 20)
  3846. TextButton192.BackgroundColor = BrickColor.new("Med. yellowish green")
  3847. TextButton192.BackgroundColor3 = Color3.new(0.8, 0.8, 0)
  3848. TextButton192.BorderColor = BrickColor.new("Really black")
  3849. TextButton192.BorderColor3 = Color3.new(0, 0, 0)
  3850. TextButton192.ZIndex = 4
  3851. TextButton192.FontSize = Enum.FontSize.Size10
  3852. TextButton192.Text = "Open Music List"
  3853. TextButton192.TextColor = BrickColor.new("Really black")
  3854. TextButton192.TextColor3 = Color3.new(0, 0, 0)
  3855. TextButton192.TextSize = 10
  3856. Script193.Parent = TextButton192
  3857. table.insert(cors,sandbox(Script193,function()
  3858. local InputValue = script.Parent.Parent.Parent.Parent.Parent
  3859. local OutputValue2 = script.Parent.Parent.TVL.t
  3860. function MB1D()
  3861. script.Parent.Parent.Music1.Visible = true
  3862. script.Parent.Parent.Music2.Visible = true
  3863. script.Parent.Parent.Music3.Visible = true
  3864. script.Parent.Visible = false
  3865. script.Parent.Parent.XMusic.Visible = true
  3866. end
  3867. function MB1D2()
  3868. OutputValue2.BackgroundColor3 = Color3.new(27,0,0)
  3869. wait(.2)
  3870. OutputValue2.BackgroundColor3 = Color3.new(255,0,0)
  3871. end
  3872. script.Parent.MouseButton1Down:connect(MB1D2)
  3873. script.Parent.MouseButton1Down:connect(MB1D)
  3874. end))
  3875. ImageLabel194.Parent = TextButton192
  3876. ImageLabel194.Size = UDim2.new(0, 20, 0, 20)
  3877. ImageLabel194.BackgroundColor = BrickColor.new("Institutional white")
  3878. ImageLabel194.BackgroundColor3 = Color3.new(1, 1, 1)
  3879. ImageLabel194.BackgroundTransparency = 1
  3880. ImageLabel194.BorderColor = BrickColor.new("Institutional white")
  3881. ImageLabel194.BorderColor3 = Color3.new(1, 1, 1)
  3882. ImageLabel194.ZIndex = 4
  3883. ImageLabel194.Image = "http://www.roblox.com/asset/?id=35755888"
  3884. ImageLabel195.Parent = TextButton192
  3885. ImageLabel195.Position = UDim2.new(0, 118, 0, 0)
  3886. ImageLabel195.Size = UDim2.new(0, 20, 0, 20)
  3887. ImageLabel195.BackgroundTransparency = 1
  3888. ImageLabel195.ZIndex = 4
  3889. ImageLabel195.Image = "http://www.roblox.com/asset/?id=35755888"
  3890. TextButton196.Name = "Music1"
  3891. TextButton196.Parent = Frame85
  3892. TextButton196.Position = UDim2.new(0, 30, 0, 325)
  3893. TextButton196.Visible = false
  3894. TextButton196.Size = UDim2.new(0, 140, 0, 20)
  3895. TextButton196.BackgroundColor = BrickColor.new("Oyster")
  3896. TextButton196.BackgroundColor3 = Color3.new(0.698039, 0.698039, 0.698039)
  3897. TextButton196.BorderColor = BrickColor.new("Institutional white")
  3898. TextButton196.BorderColor3 = Color3.new(1, 1, 1)
  3899. TextButton196.ZIndex = 4
  3900. TextButton196.FontSize = Enum.FontSize.Size10
  3901. TextButton196.Text = "Cursed Abbey"
  3902. TextButton196.TextColor = BrickColor.new("Institutional white")
  3903. TextButton196.TextColor3 = Color3.new(1, 1, 1)
  3904. TextButton196.TextSize = 10
  3905. Script197.Parent = TextButton196
  3906. table.insert(cors,sandbox(Script197,function()
  3907. local InputValue = script.Parent.Parent.Parent.Parent.Parent
  3908. local OutputValue2 = script.Parent.Parent.TVL.t
  3909. function MB1D()
  3910. local g = game.Workspace:getChildren()
  3911. for i=1,#g do
  3912. if g[i].Name == "Remotunes" then
  3913. if g[i].className == "Sound" then
  3914. if g[i].IsPlaying == true then return end
  3915. if g[i].IsPlaying == false then g[i]:remove() end
  3916. end
  3917. end
  3918. end
  3919. local s = Instance.new("Sound")
  3920. s.Parent = game.Workspace
  3921. s.Name = "Remotunes"
  3922. s.Pitch = 1
  3923. s.Volume = math.random(.7,1)
  3924. s.SoundId = "http://www.roblox.com/asset/?id=1372257"
  3925. s.Looped = false
  3926. s.PlayOnRemove = false
  3927. s:Play()
  3928. end
  3929. function MB1D2()
  3930. OutputValue2.BackgroundColor3 = Color3.new(27,0,0)
  3931. wait(.2)
  3932. OutputValue2.BackgroundColor3 = Color3.new(255,0,0)
  3933. end
  3934. script.Parent.MouseButton1Down:connect(MB1D2)
  3935. script.Parent.MouseButton1Down:connect(MB1D)
  3936. end))
  3937. TextButton198.Name = "Music2"
  3938. TextButton198.Parent = Frame85
  3939. TextButton198.Position = UDim2.new(0, 30, 0, 345)
  3940. TextButton198.Visible = false
  3941. TextButton198.Size = UDim2.new(0, 140, 0, 20)
  3942. TextButton198.BackgroundColor = BrickColor.new("Oyster")
  3943. TextButton198.BackgroundColor3 = Color3.new(0.698039, 0.698039, 0.698039)
  3944. TextButton198.BorderColor = BrickColor.new("Institutional white")
  3945. TextButton198.BorderColor3 = Color3.new(1, 1, 1)
  3946. TextButton198.ZIndex = 4
  3947. TextButton198.FontSize = Enum.FontSize.Size10
  3948. TextButton198.Text = "Caramelldansen"
  3949. TextButton198.TextColor = BrickColor.new("Institutional white")
  3950. TextButton198.TextColor3 = Color3.new(1, 1, 1)
  3951. TextButton198.TextSize = 10
  3952. Script199.Parent = TextButton198
  3953. table.insert(cors,sandbox(Script199,function()
  3954. local InputValue = script.Parent.Parent.Parent.Parent.Parent
  3955. local OutputValue2 = script.Parent.Parent.TVL.t
  3956. function MB1D()
  3957. local g = game.Workspace:getChildren()
  3958. for i=1,#g do
  3959. if g[i].Name == "Remotunes" then
  3960. if g[i].className == "Sound" then
  3961. if g[i].IsPlaying == true then return end
  3962. if g[i].IsPlaying == false then g[i]:remove() end
  3963. end
  3964. end
  3965. end
  3966. local s = Instance.new("Sound")
  3967. s.Parent = game.Workspace
  3968. s.Name = "Remotunes"
  3969. s.Pitch = 1
  3970. s.Volume = math.random(.7,1)
  3971. s.SoundId = "http://www.roblox.com/asset?id=2303479"
  3972. s.Looped = false
  3973. s.PlayOnRemove = false
  3974. s:Play()
  3975. end
  3976. function MB1D2()
  3977. OutputValue2.BackgroundColor3 = Color3.new(27,0,0)
  3978. wait(.2)
  3979. OutputValue2.BackgroundColor3 = Color3.new(255,0,0)
  3980. end
  3981. script.Parent.MouseButton1Down:connect(MB1D2)
  3982. script.Parent.MouseButton1Down:connect(MB1D)
  3983. end))
  3984. TextButton200.Name = "Music3"
  3985. TextButton200.Parent = Frame85
  3986. TextButton200.Position = UDim2.new(0, 30, 0, 365)
  3987. TextButton200.Visible = false
  3988. TextButton200.Size = UDim2.new(0, 140, 0, 20)
  3989. TextButton200.BackgroundColor = BrickColor.new("Oyster")
  3990. TextButton200.BackgroundColor3 = Color3.new(0.698039, 0.698039, 0.698039)
  3991. TextButton200.BorderColor = BrickColor.new("Institutional white")
  3992. TextButton200.BorderColor3 = Color3.new(1, 1, 1)
  3993. TextButton200.ZIndex = 4
  3994. TextButton200.FontSize = Enum.FontSize.Size10
  3995. TextButton200.Text = "TOPW"
  3996. TextButton200.TextColor = BrickColor.new("Institutional white")
  3997. TextButton200.TextColor3 = Color3.new(1, 1, 1)
  3998. TextButton200.TextSize = 10
  3999. Script201.Parent = TextButton200
  4000. table.insert(cors,sandbox(Script201,function()
  4001. local InputValue = script.Parent.Parent.Parent.Parent.Parent
  4002. local OutputValue2 = script.Parent.Parent.TVL.t
  4003. function MB1D()
  4004. local g = game.Workspace:getChildren()
  4005. for i=1,#g do
  4006. if g[i].Name == "Remotunes" then
  4007. if g[i].className == "Sound" then
  4008. if g[i].IsPlaying == true then return end
  4009. if g[i].IsPlaying == false then g[i]:remove() end
  4010. end
  4011. end
  4012. end
  4013. local s = Instance.new("Sound")
  4014. s.Parent = game.Workspace
  4015. s.Name = "Remotunes"
  4016. s.Pitch = 1
  4017. s.Volume = math.random(.7,1)
  4018. s.SoundId = "http://www.roblox.com/asset/?id=11420933"
  4019. s.Looped = false
  4020. s.PlayOnRemove = false
  4021. s:Play()
  4022. end
  4023. function MB1D2()
  4024. OutputValue2.BackgroundColor3 = Color3.new(27,0,0)
  4025. wait(.2)
  4026. OutputValue2.BackgroundColor3 = Color3.new(255,0,0)
  4027. end
  4028. script.Parent.MouseButton1Down:connect(MB1D2)
  4029. script.Parent.MouseButton1Down:connect(MB1D)
  4030. end))
  4031. TextButton202.Name = "XMusic"
  4032. TextButton202.Parent = Frame85
  4033. TextButton202.Position = UDim2.new(0, 30, 0, 300)
  4034. TextButton202.Visible = false
  4035. TextButton202.Size = UDim2.new(0, 140, 0, 20)
  4036. TextButton202.BackgroundColor = BrickColor.new("Med. yellowish green")
  4037. TextButton202.BackgroundColor3 = Color3.new(0.8, 0.8, 0)
  4038. TextButton202.BorderColor = BrickColor.new("Really black")
  4039. TextButton202.BorderColor3 = Color3.new(0, 0, 0)
  4040. TextButton202.ZIndex = 4
  4041. TextButton202.FontSize = Enum.FontSize.Size10
  4042. TextButton202.Text = "Close Music List"
  4043. TextButton202.TextColor = BrickColor.new("Really black")
  4044. TextButton202.TextColor3 = Color3.new(0, 0, 0)
  4045. TextButton202.TextSize = 10
  4046. Script203.Parent = TextButton202
  4047. table.insert(cors,sandbox(Script203,function()
  4048. local InputValue = script.Parent.Parent.Parent.Parent.Parent
  4049. local OutputValue2 = script.Parent.Parent.TVL.t
  4050. function MB1D()
  4051. script.Parent.Parent.Music1.Visible = false
  4052. script.Parent.Parent.Music2.Visible = false
  4053. script.Parent.Parent.Music3.Visible = false
  4054. script.Parent.Visible = false
  4055. script.Parent.Parent.Music.Visible = true
  4056. end
  4057. function MB1D2()
  4058. OutputValue2.BackgroundColor3 = Color3.new(27,0,0)
  4059. wait(.2)
  4060. OutputValue2.BackgroundColor3 = Color3.new(255,0,0)
  4061. end
  4062. script.Parent.MouseButton1Down:connect(MB1D2)
  4063. script.Parent.MouseButton1Down:connect(MB1D)
  4064. end))
  4065. ImageLabel204.Parent = TextButton202
  4066. ImageLabel204.Position = UDim2.new(0, 118, 0, 0)
  4067. ImageLabel204.Size = UDim2.new(0, 20, 0, 20)
  4068. ImageLabel204.BackgroundTransparency = 1
  4069. ImageLabel204.ZIndex = 4
  4070. ImageLabel204.Image = "http://www.roblox.com/asset/?id=35755888"
  4071. ImageLabel205.Parent = TextButton202
  4072. ImageLabel205.Size = UDim2.new(0, 20, 0, 20)
  4073. ImageLabel205.BackgroundColor = BrickColor.new("Institutional white")
  4074. ImageLabel205.BackgroundColor3 = Color3.new(1, 1, 1)
  4075. ImageLabel205.BackgroundTransparency = 1
  4076. ImageLabel205.BorderColor = BrickColor.new("Institutional white")
  4077. ImageLabel205.BorderColor3 = Color3.new(1, 1, 1)
  4078. ImageLabel205.ZIndex = 4
  4079. ImageLabel205.Image = "http://www.roblox.com/asset/?id=35755888"
  4080. TextLabel206.Name = "notvalid"
  4081. TextLabel206.Parent = Frame85
  4082. TextLabel206.Position = UDim2.new(0, 100, 0, 200)
  4083. TextLabel206.Visible = false
  4084. TextLabel206.Size = UDim2.new(0, 400, 0, 50)
  4085. TextLabel206.BackgroundColor = BrickColor.new("Really red")
  4086. TextLabel206.BackgroundColor3 = Color3.new(1, 0, 0)
  4087. TextLabel206.BorderColor = BrickColor.new("Really black")
  4088. TextLabel206.BorderColor3 = Color3.new(0, 0, 0)
  4089. TextLabel206.ZIndex = 4
  4090. TextLabel206.FontSize = Enum.FontSize.Size14
  4091. TextLabel206.Text = "This Command is Under Construction."
  4092. TextLabel206.TextColor = BrickColor.new("Really black")
  4093. TextLabel206.TextColor3 = Color3.new(0, 0, 0)
  4094. TextLabel206.TextSize = 14
  4095. TextLabel207.Name = "creator"
  4096. TextLabel207.Parent = Frame85
  4097. TextLabel207.Position = UDim2.new(0, 100, 0, 200)
  4098. TextLabel207.Visible = false
  4099. TextLabel207.Size = UDim2.new(0, 400, 0, 50)
  4100. TextLabel207.BackgroundColor = BrickColor.new("Really red")
  4101. TextLabel207.BackgroundColor3 = Color3.new(1, 0, 0)
  4102. TextLabel207.BorderColor = BrickColor.new("Really black")
  4103. TextLabel207.BorderColor3 = Color3.new(0, 0, 0)
  4104. TextLabel207.ZIndex = 4
  4105. TextLabel207.FontSize = Enum.FontSize.Size14
  4106. TextLabel207.Text = "You can't do that to the Creator!"
  4107. TextLabel207.TextColor = BrickColor.new("Really black")
  4108. TextLabel207.TextColor3 = Color3.new(0, 0, 0)
  4109. TextLabel207.TextSize = 14
  4110. TextLabel208.Name = "left"
  4111. TextLabel208.Parent = Frame85
  4112. TextLabel208.Position = UDim2.new(0, 100, 0, 200)
  4113. TextLabel208.Visible = false
  4114. TextLabel208.Size = UDim2.new(0, 400, 0, 50)
  4115. TextLabel208.BackgroundColor = BrickColor.new("Really red")
  4116. TextLabel208.BackgroundColor3 = Color3.new(1, 0, 0)
  4117. TextLabel208.BorderColor = BrickColor.new("Really black")
  4118. TextLabel208.BorderColor3 = Color3.new(0, 0, 0)
  4119. TextLabel208.ZIndex = 4
  4120. TextLabel208.FontSize = Enum.FontSize.Size14
  4121. TextLabel208.Text = "This Player has left, or been Removed."
  4122. TextLabel208.TextColor = BrickColor.new("Really black")
  4123. TextLabel208.TextColor3 = Color3.new(0, 0, 0)
  4124. TextLabel208.TextSize = 14
  4125. TextButton209.Name = "Ban"
  4126. TextButton209.Parent = Frame85
  4127. TextButton209.Position = UDim2.new(0, 110, 0, 580)
  4128. TextButton209.Visible = false
  4129. TextButton209.Size = UDim2.new(0, 60, 0, 20)
  4130. TextButton209.BackgroundColor = BrickColor.new("Dark orange")
  4131. TextButton209.BackgroundColor3 = Color3.new(0.6, 0.4, 0.2)
  4132. TextButton209.BorderColor = BrickColor.new("Really black")
  4133. TextButton209.BorderColor3 = Color3.new(0, 0, 0)
  4134. TextButton209.ZIndex = 4
  4135. TextButton209.FontSize = Enum.FontSize.Size10
  4136. TextButton209.Text = "Ban"
  4137. TextButton209.TextColor = BrickColor.new("Really black")
  4138. TextButton209.TextColor3 = Color3.new(0, 0, 0)
  4139. TextButton209.TextSize = 10
  4140. Script210.Parent = TextButton209
  4141. table.insert(cors,sandbox(Script210,function()
  4142. local player = script.Parent.Parent.TVL.namePL
  4143. local OutputValue2 = script.Parent.Parent.TVL.t
  4144. local rs = script.Parent.Parent.TVL.reas
  4145. local rs1 = script.Parent.Parent.TVL.reas1
  4146. local rs2 = script.Parent.Parent.TVL.reas2
  4147. local claimer = script.Parent.Parent.TVL.dbo
  4148. local InputValue = script.Parent.Parent.Parent.Parent.Parent
  4149. function playernil()
  4150. script.Parent.Parent.left.Visible = true
  4151. wait(4)
  4152. script.Parent.Parent.left.Visible = false
  4153. end
  4154. function drop()
  4155. script.Parent.Parent.creator.Visible = true
  4156. wait(4)
  4157. script.Parent.Parent.creator.Visible = false
  4158. end
  4159. function SelfActed()
  4160. script.Parent.Parent.urselfban.Visible = true
  4161. end
  4162. function Ban(name)
  4163. local b = script.Ban:Clone()
  4164. local s = Instance.new("StringValue")
  4165. s.Value = name
  4166. s.Name = "BannedPersonName"
  4167. s.Parent = b
  4168. b.Disabled = false
  4169. b.Parent = game.Workspace
  4170. end
  4171. function MB1D()
  4172. local dude = game.Players:findFirstChild(player.Text)
  4173. if (dude==nil) then return playernil() end
  4174. if (dude.Name=="DroptheBomb") then return drop() end
  4175. if (dude.Name==InputValue.Name) then return SelfActed() end
  4176. Ban(dude.Name)
  4177. dude:remove()
  4178. script.Parent.Visible = false
  4179. script.Parent.Parent.Kick.Visible = false
  4180. script.Parent.Parent.Health.Script.Disabled = true
  4181. script.Parent.Parent.TVL.playerpic.Script.Disabled = true
  4182. script.Parent.Parent.Walkspeed.Script.Disabled = true
  4183. script.Parent.Parent.Find.Visible = true
  4184. script.Parent.Parent.TVL.Text = "No Victim"
  4185. script.Parent.Parent.Whisper.Visible = false
  4186. script.Parent.Parent.TB.Visible = true
  4187. script.Parent.Parent.warn.Visible = true
  4188. script.Parent.Parent.Kill.Visible = false
  4189. script.Parent.Parent.Sparkles.Visible = false
  4190. script.Parent.Parent.ScriptMake.Visible = true
  4191. script.Parent.Parent.HanColor.Visible = true
  4192. script.Parent.Parent.X.Visible = false
  4193. script.Parent.Parent.Elevate.Visible = false
  4194. script.Parent.Parent.Crazy.Visible = false
  4195. script.Parent.Parent.Heal.Visible = false
  4196. script.Parent.Parent.Plus10.Visible = false
  4197. script.Parent.Parent.Minus10.Visible = false
  4198. script.Parent.Parent.SpinOut.Visible = false
  4199. script.Parent.Parent.upsurge.Visible = false
  4200. script.Parent.Parent.MR.Visible = false
  4201. script.Parent.Parent.Music.Visible = true
  4202. script.Parent.Parent.XMusic.Visible = false
  4203. script.Parent.Parent.Music1.Visible = false
  4204. script.Parent.Parent.Music2.Visible = false
  4205. script.Parent.Parent.Music3.Visible = false
  4206. script.Parent.Parent.reconfig.Visible = true
  4207. script.Parent.Parent.Admin.Visible = false
  4208. claimer.Visible = true
  4209. script.Parent.Parent.Trap.Visible = false
  4210. script.Parent.Parent.UTrap.Visible = false
  4211. script.Parent.Parent.Fire.Visible = false
  4212. script.Parent.Parent.Trip.Visible = false
  4213. script.Parent.Parent.Health.Visible = false
  4214. script.Parent.Parent.Freeze.Visible = false
  4215. script.Parent.Parent.Unfreeze.Visible = false
  4216. script.Parent.Parent.RO.Visible = true
  4217. script.Parent.Parent.TMTH.Visible = false
  4218. script.Parent.Parent.THTM.Visible = false
  4219. script.Parent.Parent.Punish.Visible = false
  4220. script.Parent.Parent.UnFF.Visible = false
  4221. script.Parent.Parent.FF.Visible = false
  4222. script.Parent.Parent.Unpunish.Visible = false
  4223. script.Parent.Parent.TVL.playerpic.Visible = false
  4224. script.Parent.Parent.Fling.Visible = false
  4225. script.Parent.Parent.Explode.Visible = false
  4226. script.Parent.Parent.Walkspeed.Visible = false
  4227. script.Parent.Parent.Respawn.Visible = false
  4228. script.Parent.Parent.Naked.Visible = false
  4229. script.Parent.Parent.TakeTools.Visible = false
  4230. script.Parent.Parent.PC.Visible = true
  4231. rs.Visible = true
  4232. rs1.Visible = true
  4233. rs2.Visible = true
  4234. end
  4235. function MB1D2()
  4236. local p = game.Players:findFirstChild(player.Text)
  4237. if (p==nil) then return end
  4238. OutputValue2.BackgroundColor3 = Color3.new(27,0,0)
  4239. wait(.2)
  4240. OutputValue2.BackgroundColor3 = Color3.new(255,0,0)
  4241. end
  4242. game.Players.ChildAdded:connect(onPlayerEnter)
  4243. script.Parent.MouseButton1Down:connect(MB1D2)
  4244. script.Parent.MouseButton1Down:connect(MB1D)
  4245. end))
  4246. Script211.Name = "Ban"
  4247. Script211.Parent = Script210
  4248. table.insert(cors,sandbox(Script211,function()
  4249. local val = script.BannedPersonName.Value
  4250. function onEnter(newPlayer)
  4251. if newPlayer.Name == val then
  4252. newPlayer:remove()
  4253. end
  4254. end
  4255.  
  4256. game.Players.PlayerAdded:connect(onEnter)
  4257.  
  4258. local p = game.Players:getChildren()
  4259. for i = 1,#p do
  4260. onEnter(p[i])
  4261. end
  4262.  
  4263. end))
  4264. Script211.Disabled = true
  4265. Frame212.Name = "makescript"
  4266. Frame212.Parent = Frame85
  4267. Frame212.Position = UDim2.new(0, -200, 0, 100)
  4268. Frame212.Visible = false
  4269. Frame212.Size = UDim2.new(0, 300, 0, 300)
  4270. Frame212.ZIndex = 10
  4271. Frame212.Style = Enum.FrameStyle.RobloxRound
  4272. TextLabel213.Name = "name"
  4273. TextLabel213.Parent = Frame212
  4274. TextLabel213.Position = UDim2.new(0, 30, 0, 10)
  4275. TextLabel213.ZIndex = 10
  4276. TextLabel213.Text = "Name:"
  4277. TextLabel213.TextColor = BrickColor.new("Institutional white")
  4278. TextLabel213.TextColor3 = Color3.new(1, 1, 1)
  4279. TextBox214.Name = "entnam"
  4280. TextBox214.Parent = Frame212
  4281. TextBox214.Position = UDim2.new(0, 20, 0, 20)
  4282. TextBox214.Size = UDim2.new(0, 250, 0, 20)
  4283. TextBox214.BackgroundColor = BrickColor.new("Black")
  4284. TextBox214.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  4285. TextBox214.BackgroundTransparency = 0.5
  4286. TextBox214.BorderColor = BrickColor.new("Institutional white")
  4287. TextBox214.BorderColor3 = Color3.new(1, 1, 1)
  4288. TextBox214.ZIndex = 10
  4289. TextBox214.Text = ""
  4290. TextBox214.TextColor = BrickColor.new("Institutional white")
  4291. TextBox214.TextColor3 = Color3.new(1, 1, 1)
  4292. TextBox215.Name = "sourcebox"
  4293. TextBox215.Parent = Frame212
  4294. TextBox215.Position = UDim2.new(0, 20, 0, 60)
  4295. TextBox215.Size = UDim2.new(0, 250, 0, 180)
  4296. TextBox215.BackgroundColor = BrickColor.new("Black")
  4297. TextBox215.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
  4298. TextBox215.BackgroundTransparency = 0.5
  4299. TextBox215.BorderColor = BrickColor.new("Institutional white")
  4300. TextBox215.BorderColor3 = Color3.new(1, 1, 1)
  4301. TextBox215.ZIndex = 10
  4302. TextBox215.Text = ""
  4303. TextBox215.TextColor = BrickColor.new("Institutional white")
  4304. TextBox215.TextColor3 = Color3.new(1, 1, 1)
  4305. TextBox215.TextWrap = true
  4306. TextBox215.TextWrapped = true
  4307. TextBox215.TextXAlignment = Enum.TextXAlignment.Left
  4308. TextBox215.TextYAlignment = Enum.TextYAlignment.Top
  4309. TextBox215.ClearTextOnFocus = false
  4310. TextBox215.MultiLine = true
  4311. TextLabel216.Name = "soc"
  4312. TextLabel216.Parent = Frame212
  4313. TextLabel216.Position = UDim2.new(0, 33, 0, 50)
  4314. TextLabel216.ZIndex = 10
  4315. TextLabel216.Text = "Source:"
  4316. TextLabel216.TextColor = BrickColor.new("Institutional white")
  4317. TextLabel216.TextColor3 = Color3.new(1, 1, 1)
  4318. TextButton217.Name = "Create"
  4319. TextButton217.Parent = Frame212
  4320. TextButton217.Position = UDim2.new(0, 20, 0, 250)
  4321. TextButton217.Size = UDim2.new(0, 120, 0, 30)
  4322. TextButton217.ZIndex = 10
  4323. TextButton217.Style = Enum.ButtonStyle.RobloxButton
  4324. TextButton217.FontSize = Enum.FontSize.Size14
  4325. TextButton217.Text = "Create"
  4326. TextButton217.TextColor = BrickColor.new("Institutional white")
  4327. TextButton217.TextColor3 = Color3.new(1, 1, 1)
  4328. TextButton217.TextSize = 14
  4329. Script218.Parent = TextButton217
  4330. table.insert(cors,sandbox(Script218,function()
  4331. function onb1d()
  4332. local soubox = script.Parent.Parent.sourcebox
  4333. local entnam = script.Parent.Parent.entnam
  4334. script.Parent.Parent.Parent.ScriptMake.Open.Value = false
  4335. script.Parent.Parent.Visible = false
  4336. local s = script.Parent.Parent.clone:Clone()
  4337. s.Parent = game.Workspace
  4338. s.Disabled = false
  4339. s.Name = entnam.Text
  4340. local val = Instance.new("StringValue")
  4341. val.Parent = s
  4342. val.Name = "sourceval"
  4343. val.Value = soubox.Text
  4344. wait(.001)
  4345. soubox.Text = ""
  4346. entnam.Text = ""
  4347. end
  4348.  
  4349. script.Parent.MouseButton1Down:connect(onb1d)
  4350.  
  4351. end))
  4352. TextButton219.Name = "Cancel"
  4353. TextButton219.Parent = Frame212
  4354. TextButton219.Position = UDim2.new(0, 150, 0, 250)
  4355. TextButton219.Size = UDim2.new(0, 120, 0, 30)
  4356. TextButton219.ZIndex = 10
  4357. TextButton219.Style = Enum.ButtonStyle.RobloxButton
  4358. TextButton219.FontSize = Enum.FontSize.Size14
  4359. TextButton219.Text = "Cancel"
  4360. TextButton219.TextColor = BrickColor.new("Institutional white")
  4361. TextButton219.TextColor3 = Color3.new(1, 1, 1)
  4362. TextButton219.TextSize = 14
  4363. Script220.Parent = TextButton219
  4364. table.insert(cors,sandbox(Script220,function()
  4365. function onb1d()
  4366. local soubox = script.Parent.Parent.sourcebox
  4367. local entnam = script.Parent.Parent.entnam
  4368. script.Parent.Parent.Parent.ScriptMake.Open.Value = false
  4369. script.Parent.Parent.Visible = false
  4370. wait(.001)
  4371. soubox.Text = ""
  4372. entnam.Text = ""
  4373. end
  4374.  
  4375. script.Parent.MouseButton1Down:connect(onb1d)
  4376.  
  4377. end))
  4378. Script221.Name = "clone"
  4379. Script221.Parent = Frame212
  4380. table.insert(cors,sandbox(Script221,function()
  4381. wait()
  4382. loadstring(script.sourceval.Value )()
  4383. end))
  4384. Script221.Disabled = true
  4385. TextButton222.Name = "BigSize"
  4386. TextButton222.Parent = Frame212
  4387. TextButton222.Position = UDim2.new(0, 85, 0, 300)
  4388. TextButton222.Size = UDim2.new(0, 120, 0, 30)
  4389. TextButton222.ZIndex = 10
  4390. TextButton222.Style = Enum.ButtonStyle.RobloxButton
  4391. TextButton222.FontSize = Enum.FontSize.Size14
  4392. TextButton222.Text = ""
  4393. TextButton222.TextColor = BrickColor.new("Institutional white")
  4394. TextButton222.TextColor3 = Color3.new(1, 1, 1)
  4395. TextButton222.TextSize = 14
  4396. ImageLabel223.Parent = TextButton222
  4397. ImageLabel223.Position = UDim2.new(0, 42, 0, -1)
  4398. ImageLabel223.Size = UDim2.new(0, 15, 0, 15)
  4399. ImageLabel223.BackgroundTransparency = 1
  4400. ImageLabel223.ZIndex = 10
  4401. ImageLabel223.Image = "http://www.roblox.com/asset/?id=49804953"
  4402. Script224.Name = "Extend"
  4403. Script224.Parent = TextButton222
  4404. table.insert(cors,sandbox(Script224,function()
  4405. function Extend()
  4406. local ex = script.Parent.Parent
  4407. local ex2 = script.Parent.Parent.sourcebox
  4408. local mo = script.Parent.Parent.Create
  4409. local mo2 = script.Parent.Parent.Cancel
  4410. local ov = script.Parent.Parent.NormSize
  4411. local val = 200
  4412. ex.Size = ex.Size + UDim2.new(0,0,0,val)
  4413. ex2.Size = ex2.Size + UDim2.new(0,0,0,val)
  4414. mo.Position = mo.Position + UDim2.new(0,0,0,val)
  4415. mo2.Position = mo2.Position + UDim2.new(0,0,0,val)
  4416. ov.Visible = true
  4417. script.Parent.Visible = false
  4418. end
  4419. script.Parent.MouseButton1Down:connect(Extend)
  4420.  
  4421. end))
  4422. TextButton225.Name = "NormSize"
  4423. TextButton225.Parent = Frame212
  4424. TextButton225.Position = UDim2.new(0, 85, 0, 500)
  4425. TextButton225.Visible = false
  4426. TextButton225.Size = UDim2.new(0, 120, 0, 30)
  4427. TextButton225.ZIndex = 10
  4428. TextButton225.Style = Enum.ButtonStyle.RobloxButton
  4429. TextButton225.FontSize = Enum.FontSize.Size14
  4430. TextButton225.Text = ""
  4431. TextButton225.TextColor = BrickColor.new("Institutional white")
  4432. TextButton225.TextColor3 = Color3.new(1, 1, 1)
  4433. TextButton225.TextSize = 14
  4434. ImageLabel226.Parent = TextButton225
  4435. ImageLabel226.Position = UDim2.new(0, 42, 0, -1)
  4436. ImageLabel226.Size = UDim2.new(0, 15, 0, 15)
  4437. ImageLabel226.BackgroundTransparency = 1
  4438. ImageLabel226.ZIndex = 10
  4439. ImageLabel226.Image = "http://www.roblox.com/asset/?id=49805308"
  4440. Script227.Name = "Decend"
  4441. Script227.Parent = TextButton225
  4442. table.insert(cors,sandbox(Script227,function()
  4443. function Decend()
  4444. local ex = script.Parent.Parent
  4445. local ex2 = script.Parent.Parent.sourcebox
  4446. local mo = script.Parent.Parent.Create
  4447. local mo2 = script.Parent.Parent.Cancel
  4448. local ov = script.Parent.Parent.BigSize
  4449. local val = 200
  4450. ex.Size = ex.Size - UDim2.new(0,0,0,val)
  4451. ex2.Size = ex2.Size - UDim2.new(0,0,0,val)
  4452. mo.Position = mo.Position - UDim2.new(0,0,0,val)
  4453. mo2.Position = mo2.Position - UDim2.new(0,0,0,val)
  4454. ov.Visible = true
  4455. script.Parent.Visible = false
  4456. end
  4457. script.Parent.MouseButton1Down:connect(Decend)
  4458. end))
  4459. TextLabel228.Name = "urself"
  4460. TextLabel228.Parent = Frame85
  4461. TextLabel228.Position = UDim2.new(0, 100, 0, 200)
  4462. TextLabel228.Visible = false
  4463. TextLabel228.Size = UDim2.new(0, 400, 0, 50)
  4464. TextLabel228.BackgroundColor = BrickColor.new("Deep orange")
  4465. TextLabel228.BackgroundColor3 = Color3.new(1, 0.8, 0)
  4466. TextLabel228.BorderColor = BrickColor.new("Really black")
  4467. TextLabel228.BorderColor3 = Color3.new(0, 0, 0)
  4468. TextLabel228.ZIndex = 4
  4469. TextLabel228.FontSize = Enum.FontSize.Size14
  4470. TextLabel228.Text = "Are you sure you want to do this to Yourself?"
  4471. TextLabel228.TextColor = BrickColor.new("Really black")
  4472. TextLabel228.TextColor3 = Color3.new(0, 0, 0)
  4473. TextLabel228.TextSize = 14
  4474. TextButton229.Name = "Yes"
  4475. TextButton229.Parent = TextLabel228
  4476. TextButton229.Position = UDim2.new(0, 0, 0, 50)
  4477. TextButton229.Size = UDim2.new(0, 200, 0, 30)
  4478. TextButton229.BackgroundColor = BrickColor.new("Lime green")
  4479. TextButton229.BackgroundColor3 = Color3.new(0, 1, 0)
  4480. TextButton229.BorderColor = BrickColor.new("Really black")
  4481. TextButton229.BorderColor3 = Color3.new(0, 0, 0)
  4482. TextButton229.ZIndex = 4
  4483. TextButton229.Font = Enum.Font.ArialBold
  4484. TextButton229.FontSize = Enum.FontSize.Size24
  4485. TextButton229.Text = "Yes, I am Sure."
  4486. TextButton229.TextColor = BrickColor.new("Institutional white")
  4487. TextButton229.TextColor3 = Color3.new(1, 1, 1)
  4488. TextButton229.TextSize = 24
  4489. Script230.Parent = TextButton229
  4490. table.insert(cors,sandbox(Script230,function()
  4491. local self = script.Parent.Parent.Parent.Parent.Parent.Parent
  4492. function sure()
  4493. self:remove()
  4494. end
  4495. script.Parent.MouseButton1Down:connect(sure)
  4496.  
  4497. end))
  4498. TextButton231.Name = "No"
  4499. TextButton231.Parent = TextLabel228
  4500. TextButton231.Position = UDim2.new(0, 200, 0, 50)
  4501. TextButton231.Size = UDim2.new(0, 200, 0, 30)
  4502. TextButton231.BackgroundColor = BrickColor.new("Really red")
  4503. TextButton231.BackgroundColor3 = Color3.new(1, 0, 0)
  4504. TextButton231.BorderColor = BrickColor.new("Really black")
  4505. TextButton231.BorderColor3 = Color3.new(0, 0, 0)
  4506. TextButton231.ZIndex = 4
  4507. TextButton231.Font = Enum.Font.ArialBold
  4508. TextButton231.FontSize = Enum.FontSize.Size24
  4509. TextButton231.Text = "No.I'm not."
  4510. TextButton231.TextColor = BrickColor.new("Institutional white")
  4511. TextButton231.TextColor3 = Color3.new(1, 1, 1)
  4512. TextButton231.TextSize = 24
  4513. Script232.Parent = TextButton231
  4514. table.insert(cors,sandbox(Script232,function()
  4515. function notsure()
  4516. script.Parent.Parent.Visible = false
  4517. end
  4518. script.Parent.MouseButton1Down:connect(notsure)
  4519.  
  4520. end))
  4521. TextButton233.Name = "SpinOut"
  4522. TextButton233.Parent = Frame85
  4523. TextButton233.Position = UDim2.new(0, 30, 0, 610)
  4524. TextButton233.Visible = false
  4525. TextButton233.Size = UDim2.new(0, 60, 0, 20)
  4526. TextButton233.BackgroundColor = BrickColor.new("Br. yellowish green")
  4527. TextButton233.BackgroundColor3 = Color3.new(0.6, 1, 0.2)
  4528. TextButton233.BorderColor = BrickColor.new("Really black")
  4529. TextButton233.BorderColor3 = Color3.new(0, 0, 0)
  4530. TextButton233.ZIndex = 4
  4531. TextButton233.FontSize = Enum.FontSize.Size10
  4532. TextButton233.Text = "Spin Out"
  4533. TextButton233.TextColor = BrickColor.new("Really black")
  4534. TextButton233.TextColor3 = Color3.new(0, 0, 0)
  4535. TextButton233.TextSize = 10
  4536. Script234.Parent = TextButton233
  4537. table.insert(cors,sandbox(Script234,function()
  4538. local player = script.Parent.Parent.TVL.namePL
  4539. local OutputValue2 = script.Parent.Parent.TVL.t
  4540. function playernil()
  4541. script.Parent.Parent.left.Visible = true
  4542. wait(4)
  4543. script.Parent.Parent.left.Visible = false
  4544. end
  4545. function MB1D()
  4546. local dude = game.Players:findFirstChild(player.Text)
  4547. if (dude==nil) then return playernil() end
  4548. looped = true
  4549. times = 50
  4550. local torso = dude.Character:findFirstChild("Torso")
  4551. if (torso==nil) then return end
  4552. while looped do
  4553. torso.CFrame = torso.CFrame * CFrame.fromEulerAnglesXYZ(0,1,.2)
  4554. wait(0.000000000000000000000000001)
  4555. end
  4556. end
  4557. function MB1D2()
  4558. local p = game.Players:findFirstChild(player.Text)
  4559. if (p==nil) then return end
  4560. OutputValue2.BackgroundColor3 = Color3.new(27,0,0)
  4561. wait(.2)
  4562. OutputValue2.BackgroundColor3 = Color3.new(255,0,0)
  4563. end
  4564. script.Parent.MouseButton1Down:connect(MB1D2)
  4565. script.Parent.MouseButton1Down:connect(MB1D)
  4566. end))
  4567. TextButton235.Name = "upsurge"
  4568. TextButton235.Parent = Frame85
  4569. TextButton235.Position = UDim2.new(0, 110, 0, 610)
  4570. TextButton235.Visible = false
  4571. TextButton235.Size = UDim2.new(0, 60, 0, 20)
  4572. TextButton235.BackgroundColor = BrickColor.new("Institutional white")
  4573. TextButton235.BackgroundColor3 = Color3.new(1, 1, 1)
  4574. TextButton235.BorderColor = BrickColor.new("Deep orange")
  4575. TextButton235.BorderColor3 = Color3.new(1, 0.6, 0)
  4576. TextButton235.ZIndex = 4
  4577. TextButton235.FontSize = Enum.FontSize.Size10
  4578. TextButton235.Text = "Godhealth"
  4579. TextButton235.TextColor = BrickColor.new("Deep orange")
  4580. TextButton235.TextColor3 = Color3.new(1, 0.6, 0)
  4581. TextButton235.TextSize = 10
  4582. Script236.Parent = TextButton235
  4583. table.insert(cors,sandbox(Script236,function()
  4584. local player = script.Parent.Parent.TVL.namePL
  4585. local OutputValue2 = script.Parent.Parent.TVL.t
  4586. function playernil()
  4587. script.Parent.Parent.left.Visible = true
  4588. wait(4)
  4589. script.Parent.Parent.left.Visible = false
  4590. end
  4591. function MB1D()
  4592. local dude = game.Players:findFirstChild(player.Text)
  4593. if (dude==nil) then return playernil() end
  4594. if dude.Character.Humanoid.Health ~= 0 then
  4595. dude.Character.Humanoid.MaxHealth = math.huge
  4596. dude.Character.Humanoid.Health = math.huge
  4597. end
  4598. end
  4599. function MB1D2()
  4600. local p = game.Players:findFirstChild(player.Text)
  4601. if (p==nil) then return end
  4602. OutputValue2.BackgroundColor3 = Color3.new(27,0,0)
  4603. wait(.2)
  4604. OutputValue2.BackgroundColor3 = Color3.new(255,0,0)
  4605. end
  4606. script.Parent.MouseButton1Down:connect(MB1D2)
  4607. script.Parent.MouseButton1Down:connect(MB1D)
  4608. end))
  4609. TextLabel237.Name = "proj"
  4610. TextLabel237.Parent = Frame85
  4611. TextLabel237.Position = UDim2.new(0, 100, 0, 200)
  4612. TextLabel237.Visible = false
  4613. TextLabel237.Size = UDim2.new(0, 400, 0, 50)
  4614. TextLabel237.BackgroundColor = BrickColor.new("Lime green")
  4615. TextLabel237.BackgroundColor3 = Color3.new(0, 1, 0)
  4616. TextLabel237.BorderColor = BrickColor.new("Really black")
  4617. TextLabel237.BorderColor3 = Color3.new(0, 0, 0)
  4618. TextLabel237.ZIndex = 4
  4619. TextLabel237.FontSize = Enum.FontSize.Size14
  4620. TextLabel237.Text = "Please type a Player ID For you to Try."
  4621. TextLabel237.TextColor = BrickColor.new("Really black")
  4622. TextLabel237.TextColor3 = Color3.new(0, 0, 0)
  4623. TextLabel237.TextSize = 14
  4624. TextButton238.Name = "try"
  4625. TextButton238.Parent = TextLabel237
  4626. TextButton238.Position = UDim2.new(0, 0, 0, 90)
  4627. TextButton238.Size = UDim2.new(0, 400, 0, 30)
  4628. TextButton238.BackgroundColor = BrickColor.new("Lime green")
  4629. TextButton238.BackgroundColor3 = Color3.new(0, 1, 0)
  4630. TextButton238.BorderColor = BrickColor.new("Really black")
  4631. TextButton238.BorderColor3 = Color3.new(0, 0, 0)
  4632. TextButton238.ZIndex = 4
  4633. TextButton238.Font = Enum.Font.ArialBold
  4634. TextButton238.FontSize = Enum.FontSize.Size18
  4635. TextButton238.Text = "Try"
  4636. TextButton238.TextColor = BrickColor.new("Really black")
  4637. TextButton238.TextColor3 = Color3.new(0, 0, 0)
  4638. TextButton238.TextSize = 18
  4639. Script239.Parent = TextButton238
  4640. table.insert(cors,sandbox(Script239,function()
  4641. local InputValue = script.Parent.Parent.Parent.Parent.Parent
  4642. script.Parent.MouseButton1Down:connect(function()
  4643. InputValue.CharacterAppearance =
  4644. end
  4645. Script239.Disabled = true
  4646. TextBox240.Name = "TB2"
  4647. TextBox240.Parent = TextLabel237
  4648. TextBox240.Position = UDim2.new(0, 0, 0, 50)
  4649. TextBox240.Size = UDim2.new(0, 400, 0, 40)
  4650. TextBox240.BackgroundColor = BrickColor.new("Toothpaste")
  4651. TextBox240.BackgroundColor3 = Color3.new(0, 1, 1)
  4652. TextBox240.BorderColor = BrickColor.new("Really red")
  4653. TextBox240.BorderColor3 = Color3.new(1, 0, 0)
  4654. TextBox240.ZIndex = 4
  4655. TextBox240.Text = ""
  4656. TextBox240.TextColor = BrickColor.new("Really red")
  4657. TextBox240.TextColor3 = Color3.new(1, 0, 0)
  4658. TextBox240.TextTransparency = 0.5
  4659. TextButton241.Name = "ScriptMake"
  4660. TextButton241.Parent = Frame85
  4661. TextButton241.Position = UDim2.new(0, 30, 0, 400)
  4662. TextButton241.Size = UDim2.new(0, 140, 0, 20)
  4663. TextButton241.BackgroundColor = BrickColor.new("Deep orange")
  4664. TextButton241.BackgroundColor3 = Color3.new(1, 0.8, 0)
  4665. TextButton241.BorderColor = BrickColor.new("Really black")
  4666. TextButton241.BorderColor3 = Color3.new(0, 0, 0)
  4667. TextButton241.ZIndex = 4
  4668. TextButton241.FontSize = Enum.FontSize.Size10
  4669. TextButton241.Text = "Create a Script"
  4670. TextButton241.TextColor = BrickColor.new("Really black")
  4671. TextButton241.TextColor3 = Color3.new(0, 0, 0)
  4672. TextButton241.TextSize = 10
  4673. Script242.Parent = TextButton241
  4674. table.insert(cors,sandbox(Script242,function()
  4675. local InputValue = script.Parent.Parent.Parent.Parent.Parent
  4676. local OutputValue2 = script.Parent.Parent.TVL.t
  4677. function MB1D()
  4678.  
  4679. if script.Parent.Open.Value == false then
  4680. script.Parent.Parent.makescript.Visible = true
  4681. script.Parent.Open.Value = true
  4682. end
  4683.  
  4684. end
  4685. function MB1D2()
  4686. OutputValue2.BackgroundColor3 = Color3.new(27,0,0)
  4687. wait(.2)
  4688. OutputValue2.BackgroundColor3 = Color3.new(255,0,0)
  4689. end
  4690. script.Parent.MouseButton1Down:connect(MB1D2)
  4691. script.Parent.MouseButton1Down:connect(MB1D)
  4692. end))
  4693. ImageLabel243.Parent = TextButton241
  4694. ImageLabel243.Position = UDim2.new(0, 3, 0, 3)
  4695. ImageLabel243.Size = UDim2.new(0, 15, 0, 15)
  4696. ImageLabel243.BackgroundTransparency = 1
  4697. ImageLabel243.ZIndex = 5
  4698. ImageLabel243.Image = "http://www.roblox.com/asset/?id=46342657"
  4699. ImageLabel244.Parent = TextButton241
  4700. ImageLabel244.Position = UDim2.new(0, 123, 0, 3)
  4701. ImageLabel244.Size = UDim2.new(0, 15, 0, 15)
  4702. ImageLabel244.BackgroundTransparency = 1
  4703. ImageLabel244.ZIndex = 5
  4704. ImageLabel244.Image = "http://www.roblox.com/asset/?id=46342657"
  4705. BoolValue245.Name = "Open"
  4706. BoolValue245.Parent = TextButton241
  4707. Frame246.Name = "HandleColor"
  4708. Frame246.Parent = Frame85
  4709. Frame246.Position = UDim2.new(0, -25, 0, 400)
  4710. Frame246.Visible = false
  4711. Frame246.Size = UDim2.new(0, 250, 0, 250)
  4712. Frame246.ZIndex = 10
  4713. Frame246.Style = Enum.FrameStyle.RobloxRound
  4714. TextButton247.Name = "Grey"
  4715. TextButton247.Parent = Frame246
  4716. TextButton247.Position = UDim2.new(0, 20, 0, 20)
  4717. TextButton247.Size = UDim2.new(0, 40, 0, 40)
  4718. TextButton247.BackgroundColor = BrickColor.new("Dark stone grey")
  4719. TextButton247.BackgroundColor3 = Color3.new(0.372549, 0.372549, 0.372549)
  4720. TextButton247.BorderSizePixel = 0
  4721. TextButton247.ZIndex = 10
  4722. TextButton247.Text = ""
  4723. Script248.Parent = TextButton247
  4724. table.insert(cors,sandbox(Script248,function()
  4725. function onButton1Down()
  4726. local hanval = script.Parent.Parent.Parent.HandleVal
  4727. val = hanval.Value
  4728. if (val==nil) then return end
  4729. script.Parent.Parent.Parent.BackgroundColor3 = script.Parent.Value.Value
  4730. script.Parent.Parent.Visible = false
  4731. val.BrickColor = BrickColor.New("Dark stone grey")
  4732. val.Reflectance = 0
  4733. script.Parent.Parent.Parent.HanColor.Open.Value = false
  4734. end
  4735. script.Parent.MouseButton1Down:connect(onButton1Down)
  4736. end))
  4737. Color3Value249.Parent = TextButton247
  4738. Color3Value249.Value = Color3.new(0.372549, 0.372549, 0.372549)
  4739. TextButton250.Name = "Red"
  4740. TextButton250.Parent = Frame246
  4741. TextButton250.Position = UDim2.new(0, 100, 0, 20)
  4742. TextButton250.Size = UDim2.new(0, 40, 0, 40)
  4743. TextButton250.BackgroundColor = BrickColor.new("Really red")
  4744. TextButton250.BackgroundColor3 = Color3.new(1, 0, 0)
  4745. TextButton250.BorderSizePixel = 0
  4746. TextButton250.ZIndex = 10
  4747. TextButton250.Text = ""
  4748. Script251.Parent = TextButton250
  4749. table.insert(cors,sandbox(Script251,function()
  4750. function onButton1Down()
  4751. local hanval = script.Parent.Parent.Parent.HandleVal
  4752. val = hanval.Value
  4753. if (val==nil) then return end
  4754. script.Parent.Parent.Parent.BackgroundColor3 = script.Parent.Value.Value
  4755. script.Parent.Parent.Visible = false
  4756. val.BrickColor = BrickColor.New("Really red")
  4757. val.Reflectance = 0
  4758. script.Parent.Parent.Parent.HanColor.Open.Value = false
  4759. end
  4760. script.Parent.MouseButton1Down:connect(onButton1Down)
  4761. end))
  4762. Color3Value252.Parent = TextButton250
  4763. Color3Value252.Value = Color3.new(1, 0, 0)
  4764. TextButton253.Name = "Blue"
  4765. TextButton253.Parent = Frame246
  4766. TextButton253.Position = UDim2.new(0, 180, 0, 20)
  4767. TextButton253.Size = UDim2.new(0, 40, 0, 40)
  4768. TextButton253.BackgroundColor = BrickColor.new("Really blue")
  4769. TextButton253.BackgroundColor3 = Color3.new(0, 0, 1)
  4770. TextButton253.BorderSizePixel = 0
  4771. TextButton253.ZIndex = 10
  4772. TextButton253.Text = ""
  4773. Script254.Parent = TextButton253
  4774. table.insert(cors,sandbox(Script254,function()
  4775. function onButton1Down()
  4776. local hanval = script.Parent.Parent.Parent.HandleVal
  4777. val = hanval.Value
  4778. if (val==nil) then return end
  4779. script.Parent.Parent.Parent.BackgroundColor3 = script.Parent.Value.Value
  4780. script.Parent.Parent.Visible = false
  4781. val.BrickColor = BrickColor.New("Really blue")
  4782. val.Reflectance = 0
  4783. script.Parent.Parent.Parent.HanColor.Open.Value = false
  4784. end
  4785. script.Parent.MouseButton1Down:connect(onButton1Down)
  4786. end))
  4787. Color3Value255.Parent = TextButton253
  4788. Color3Value255.Value = Color3.new(0, 0, 1)
  4789. TextButton256.Name = "Toothpaste"
  4790. TextButton256.Parent = Frame246
  4791. TextButton256.Position = UDim2.new(0, 20, 0, 100)
  4792. TextButton256.Size = UDim2.new(0, 40, 0, 40)
  4793. TextButton256.BackgroundColor = BrickColor.new("Toothpaste")
  4794. TextButton256.BackgroundColor3 = Color3.new(0, 1, 1)
  4795. TextButton256.BorderSizePixel = 0
  4796. TextButton256.ZIndex = 10
  4797. TextButton256.Text = ""
  4798. Script257.Parent = TextButton256
  4799. table.insert(cors,sandbox(Script257,function()
  4800. function onButton1Down()
  4801. local hanval = script.Parent.Parent.Parent.HandleVal
  4802. val = hanval.Value
  4803. if (val==nil) then return end
  4804. script.Parent.Parent.Parent.BackgroundColor3 = script.Parent.Value.Value
  4805. script.Parent.Parent.Visible = false
  4806. val.BrickColor = BrickColor.New("Toothpaste")
  4807. val.Reflectance = 0
  4808. script.Parent.Parent.Parent.HanColor.Open.Value = false
  4809. end
  4810. script.Parent.MouseButton1Down:connect(onButton1Down)
  4811. end))
  4812. Color3Value258.Parent = TextButton256
  4813. Color3Value258.Value = Color3.new(0, 1, 1)
  4814. TextButton259.Name = "Green"
  4815. TextButton259.Parent = Frame246
  4816. TextButton259.Position = UDim2.new(0, 100, 0, 100)
  4817. TextButton259.Size = UDim2.new(0, 40, 0, 40)
  4818. TextButton259.BackgroundColor = BrickColor.new("Lime green")
  4819. TextButton259.BackgroundColor3 = Color3.new(0, 1, 0)
  4820. TextButton259.BorderSizePixel = 0
  4821. TextButton259.ZIndex = 10
  4822. TextButton259.Text = ""
  4823. Script260.Parent = TextButton259
  4824. table.insert(cors,sandbox(Script260,function()
  4825. function onButton1Down()
  4826. local hanval = script.Parent.Parent.Parent.HandleVal
  4827. val = hanval.Value
  4828. if (val==nil) then return end
  4829. script.Parent.Parent.Parent.BackgroundColor3 = script.Parent.Value.Value
  4830. script.Parent.Parent.Visible = false
  4831. val.BrickColor = BrickColor.New("Lime green")
  4832. val.Reflectance = 0
  4833. script.Parent.Parent.Parent.HanColor.Open.Value = false
  4834. end
  4835. script.Parent.MouseButton1Down:connect(onButton1Down)
  4836. end))
  4837. Color3Value261.Parent = TextButton259
  4838. Color3Value261.Value = Color3.new(0, 1, 0)
  4839. TextButton262.Name = "Yellow"
  4840. TextButton262.Parent = Frame246
  4841. TextButton262.Position = UDim2.new(0, 180, 0, 100)
  4842. TextButton262.Size = UDim2.new(0, 40, 0, 40)
  4843. TextButton262.BackgroundColor = BrickColor.new("New Yeller")
  4844. TextButton262.BackgroundColor3 = Color3.new(1, 1, 0)
  4845. TextButton262.BorderSizePixel = 0
  4846. TextButton262.ZIndex = 10
  4847. TextButton262.Text = ""
  4848. Script263.Parent = TextButton262
  4849. table.insert(cors,sandbox(Script263,function()
  4850. function onButton1Down()
  4851. local hanval = script.Parent.Parent.Parent.HandleVal
  4852. val = hanval.Value
  4853. if (val==nil) then return end
  4854. script.Parent.Parent.Parent.BackgroundColor3 = script.Parent.Value.Value
  4855. script.Parent.Parent.Visible = false
  4856. val.BrickColor = BrickColor.New("New Yeller")
  4857. val.Reflectance = 0
  4858. script.Parent.Parent.Parent.HanColor.Open.Value = false
  4859. end
  4860. script.Parent.MouseButton1Down:connect(onButton1Down)
  4861. end))
  4862. Color3Value264.Parent = TextButton262
  4863. Color3Value264.Value = Color3.new(1, 1, 0)
  4864. TextButton265.Name = "Gold"
  4865. TextButton265.Parent = Frame246
  4866. TextButton265.Position = UDim2.new(0, 20, 0, 180)
  4867. TextButton265.Size = UDim2.new(0, 40, 0, 40)
  4868. TextButton265.BackgroundColor = BrickColor.new("Med. yellowish green")
  4869. TextButton265.BackgroundColor3 = Color3.new(0.8, 0.8, 0)
  4870. TextButton265.BorderSizePixel = 0
  4871. TextButton265.ZIndex = 10
  4872. TextButton265.Text = ""
  4873. Script266.Parent = TextButton265
  4874. table.insert(cors,sandbox(Script266,function()
  4875. function onButton1Down()
  4876. local hanval = script.Parent.Parent.Parent.HandleVal
  4877. val = hanval.Value
  4878. if (val==nil) then return end
  4879. script.Parent.Parent.Parent.BackgroundColor3 = script.Parent.Value.Value
  4880. val.BrickColor = BrickColor.New("Bright yellow")
  4881. script.Parent.Parent.Visible = false
  4882. val.Reflectance = .4
  4883. script.Parent.Parent.Parent.HanColor.Open.Value = false
  4884. end
  4885. script.Parent.MouseButton1Down:connect(onButton1Down)
  4886. end))
  4887. Color3Value267.Parent = TextButton265
  4888. Color3Value267.Value = Color3.new(0.8, 0.8, 0)
  4889. TextButton268.Name = "DarkGreen"
  4890. TextButton268.Parent = Frame246
  4891. TextButton268.Position = UDim2.new(0, 100, 0, 180)
  4892. TextButton268.Size = UDim2.new(0, 40, 0, 40)
  4893. TextButton268.BackgroundColor = BrickColor.new("Forest green")
  4894. TextButton268.BackgroundColor3 = Color3.new(0, 0.6, 0)
  4895. TextButton268.BorderSizePixel = 0
  4896. TextButton268.ZIndex = 10
  4897. TextButton268.Text = ""
  4898. Script269.Parent = TextButton268
  4899. table.insert(cors,sandbox(Script269,function()
  4900. function onButton1Down()
  4901. local hanval = script.Parent.Parent.Parent.HandleVal
  4902. val = hanval.Value
  4903. if (val==nil) then return end
  4904. script.Parent.Parent.Parent.BackgroundColor3 = script.Parent.Value.Value
  4905. script.Parent.Parent.Visible = false
  4906. val.BrickColor = BrickColor.New("Camo")
  4907. val.Reflectance = 0
  4908. script.Parent.Parent.Parent.HanColor.Open.Value = false
  4909. end
  4910. script.Parent.MouseButton1Down:connect(onButton1Down)
  4911. end))
  4912. Color3Value270.Parent = TextButton268
  4913. Color3Value270.Value = Color3.new(0, 0.6, 0)
  4914. TextButton271.Name = "Black"
  4915. TextButton271.Parent = Frame246
  4916. TextButton271.Position = UDim2.new(0, 180, 0, 180)
  4917. TextButton271.Size = UDim2.new(0, 40, 0, 40)
  4918. TextButton271.BackgroundColor = BrickColor.new("Really black")
  4919. TextButton271.BackgroundColor3 = Color3.new(0, 0, 0)
  4920. TextButton271.BorderSizePixel = 0
  4921. TextButton271.ZIndex = 10
  4922. TextButton271.Text = ""
  4923. Script272.Parent = TextButton271
  4924. table.insert(cors,sandbox(Script272,function()
  4925. function onButton1Down()
  4926. local hanval = script.Parent.Parent.Parent.HandleVal
  4927. val = hanval.Value
  4928. if (val==nil) then return end
  4929. script.Parent.Parent.Parent.BackgroundColor3 = script.Parent.Value.Value
  4930. script.Parent.Parent.Visible = false
  4931. val.BrickColor = BrickColor.New("Really black")
  4932. val.Reflectance = 0
  4933. script.Parent.Parent.Parent.HanColor.Open.Value = false
  4934. end
  4935. script.Parent.MouseButton1Down:connect(onButton1Down)
  4936. end))
  4937. Color3Value273.Parent = TextButton271
  4938. TextButton274.Name = "HanColor"
  4939. TextButton274.Parent = Frame85
  4940. TextButton274.Position = UDim2.new(0, 30, 0, 430)
  4941. TextButton274.Size = UDim2.new(0, 140, 0, 20)
  4942. TextButton274.BackgroundColor = BrickColor.new("Lime green")
  4943. TextButton274.BackgroundColor3 = Color3.new(0, 0.8, 0)
  4944. TextButton274.BorderColor = BrickColor.new("Institutional white")
  4945. TextButton274.BorderColor3 = Color3.new(1, 1, 1)
  4946. TextButton274.ZIndex = 4
  4947. TextButton274.FontSize = Enum.FontSize.Size10
  4948. TextButton274.Text = "Color the Remote"
  4949. TextButton274.TextColor = BrickColor.new("Institutional white")
  4950. TextButton274.TextColor3 = Color3.new(1, 1, 1)
  4951. TextButton274.TextSize = 10
  4952. Script275.Parent = TextButton274
  4953. table.insert(cors,sandbox(Script275,function()
  4954. local InputValue = script.Parent.Parent.Parent.Parent.Parent
  4955. local OutputValue2 = script.Parent.Parent.TVL.t
  4956. local Enabled = true
  4957.  
  4958. function ply()
  4959. script.Parent.Parent.notvalid.Visible = true
  4960. wait(4)
  4961. script.Parent.Parent.notvalid.Visible = false
  4962. end
  4963.  
  4964. function MB1D()
  4965. if not Enabled then return ply() end
  4966. if script.Parent.Open.Value == false then
  4967. script.Parent.Parent.HandleColor.Visible = true
  4968. script.Parent.Open.Value = true
  4969. end
  4970.  
  4971. end
  4972. function MB1D2()
  4973. OutputValue2.BackgroundColor3 = Color3.new(27,0,0)
  4974. wait(.2)
  4975. OutputValue2.BackgroundColor3 = Color3.new(255,0,0)
  4976. end
  4977. script.Parent.MouseButton1Down:connect(MB1D2)
  4978. script.Parent.MouseButton1Down:connect(MB1D)
  4979. end))
  4980. BoolValue276.Name = "Open"
  4981. BoolValue276.Parent = TextButton274
  4982. ImageLabel277.Parent = TextButton274
  4983. ImageLabel277.Position = UDim2.new(0, -7, 0, -1)
  4984. ImageLabel277.Size = UDim2.new(0, 25, 0, 25)
  4985. ImageLabel277.BackgroundTransparency = 1
  4986. ImageLabel277.ZIndex = 5
  4987. ImageLabel277.Image = "http://www.roblox.com/asset/?id=28319805"
  4988. ImageLabel278.Parent = TextButton274
  4989. ImageLabel278.Position = UDim2.new(0, 123, 0, -1)
  4990. ImageLabel278.Size = UDim2.new(0, 25, 0, 25)
  4991. ImageLabel278.BackgroundTransparency = 1
  4992. ImageLabel278.ZIndex = 5
  4993. ImageLabel278.Image = "http://www.roblox.com/asset/?id=28319805"
  4994. TextButton279.Name = "nuke"
  4995. TextButton279.Parent = Frame85
  4996. TextButton279.Position = UDim2.new(0, 23, 0, 450)
  4997. TextButton279.Visible = false
  4998. TextButton279.Size = UDim2.new(0, 160, 0, 25)
  4999. TextButton279.BackgroundColor = BrickColor.new("Really black")
  5000. TextButton279.BackgroundColor3 = Color3.new(0, 0, 0)
  5001. TextButton279.BorderColor = BrickColor.new("Institutional white")
  5002. TextButton279.BorderColor3 = Color3.new(1, 1, 1)
  5003. TextButton279.ZIndex = 5
  5004. TextButton279.FontSize = Enum.FontSize.Size12
  5005. TextButton279.Text = "Detonate Super Nuke"
  5006. TextButton279.TextColor = BrickColor.new("Institutional white")
  5007. TextButton279.TextColor3 = Color3.new(1, 1, 1)
  5008. TextButton279.TextSize = 12
  5009. Script280.Parent = TextButton279
  5010. table.insert(cors,sandbox(Script280,function()
  5011. local InputValue = script.Parent.Parent.Parent.Parent.Parent
  5012. function MB1D()
  5013. local p = Instance.new("Part")
  5014. p.Parent = game.Workspace
  5015. p.formFactor = "Custom"
  5016. p.Shape = "Ball"
  5017. p.TopSurface = "Smooth"
  5018. p.BottomSurface = "Smooth"
  5019. p.Position = InputValue.Character.Torso.Position
  5020. p.Anchored = true
  5021. game.Lighting.TimeOfDay = "0:00:00"
  5022. local e = Instance.new("Explosion")
  5023. e.BlastPressure = 70
  5024. e.BlastRadius = 700
  5025. e.Parent = game.Workspace
  5026. e.Position = InputValue.Character.Torso.Position
  5027. local cframeval = InputValue.Character:findFirstChild("Torso").CFrame
  5028. p.CFrame = cframeval
  5029. p.Size = Vector3.new(1, 1, 1)
  5030. p.BrickColor = BrickColor.New("Bright yellow")
  5031. p.Transparency = .4
  5032. p.Anchored = true
  5033. local sc = script.Grow:Clone()
  5034. sc.Parent = p
  5035. sc.Disabled = false
  5036. local to = script.ot:Clone()
  5037. to.Parent = p
  5038. to.Disabled = false
  5039. end
  5040. script.Parent.MouseButton1Down:connect(MB1D)
  5041.  
  5042. end))
  5043. Script281.Name = "ot"
  5044. Script281.Parent = Script280
  5045. table.insert(cors,sandbox(Script281,function()
  5046. function onTouch(hit)
  5047. if hit.className == "Part" or hit.className == "WedgePart" or hit.className == "CornerWedgePart" or hit.className == "TrussPart" or hit.className == "SpawnLocation" then
  5048. hit.Material = "CorrodedMetal"
  5049. hit.Anchored = false
  5050. if hit.Parent:findFirstChild(script.Name) == nil then
  5051. local sc = script:clone()
  5052. sc.Parent = hit
  5053. end
  5054. if hit.Parent == "Model" then
  5055. local g = hit.Parent:getChildren()
  5056. for i = 1,#g do
  5057. if g[i].className == "Part" or g[i].className == "WedgePart" or g[i].className == "CornerWedgePart" or g[i].className == "TrussPart" or g[i].className == "SpawnLocation" then
  5058. g[i].Material = "CorrodedMetal"
  5059. g[i].Anchored = false
  5060. if hit.Parent:findFirstChild(script.Name) == nil then
  5061. local sc = script:clone()
  5062. sc.Parent = hit
  5063. end
  5064. sc.Parent = g[i]
  5065. end
  5066. if g[i].className == "Model" then
  5067. onTouch(g[i])
  5068. end
  5069. end
  5070. end
  5071. else
  5072. hit:remove()
  5073. end
  5074. end
  5075. script.Parent.Touched:connect(onTouch)
  5076. end))
  5077. Script281.Disabled = true
  5078. Script282.Name = "Grow"
  5079. Script282.Parent = Script280
  5080. table.insert(cors,sandbox(Script282,function()
  5081. wait(0.1)
  5082. Boom = script.Parent
  5083. local cval = Boom.CFrame
  5084. for i = 1,500 do
  5085. Boom.Size = Boom.Size + Vector3.new(1, 1, 1)
  5086. Boom.CFrame = cval
  5087. wait(0.01)
  5088. end
  5089. Boom:Remove()
  5090. end))
  5091. Script282.Disabled = true
  5092. TextLabel283.Name = "notfound"
  5093. TextLabel283.Parent = Frame85
  5094. TextLabel283.Position = UDim2.new(0, 100, 0, 200)
  5095. TextLabel283.Visible = false
  5096. TextLabel283.Size = UDim2.new(0, 400, 0, 50)
  5097. TextLabel283.BackgroundColor = BrickColor.new("Really red")
  5098. TextLabel283.BackgroundColor3 = Color3.new(1, 0, 0)
  5099. TextLabel283.BorderColor = BrickColor.new("Really black")
  5100. TextLabel283.BorderColor3 = Color3.new(0, 0, 0)
  5101. TextLabel283.ZIndex = 4
  5102. TextLabel283.FontSize = Enum.FontSize.Size14
  5103. TextLabel283.Text = "This player was Not Found."
  5104. TextLabel283.TextColor = BrickColor.new("Really black")
  5105. TextLabel283.TextColor3 = Color3.new(0, 0, 0)
  5106. TextLabel283.TextSize = 14
  5107. TextLabel284.Name = "note"
  5108. TextLabel284.Parent = Frame85
  5109. TextLabel284.Position = UDim2.new(0, 100, 0, 200)
  5110. TextLabel284.Visible = false
  5111. TextLabel284.Size = UDim2.new(0, 150, 0, 20)
  5112. TextLabel284.BackgroundColor = BrickColor.new("Institutional white")
  5113. TextLabel284.BackgroundColor3 = Color3.new(1, 1, 1)
  5114. TextLabel284.BorderColor = BrickColor.new("Really black")
  5115. TextLabel284.BorderColor3 = Color3.new(0, 0, 0)
  5116. TextLabel284.ZIndex = 3
  5117. TextLabel284.Font = Enum.Font.ArialBold
  5118. TextLabel284.FontSize = Enum.FontSize.Size18
  5119. TextLabel284.Text = "Notice"
  5120. TextLabel284.TextColor = BrickColor.new("Really black")
  5121. TextLabel284.TextColor3 = Color3.new(0, 0, 0)
  5122. TextLabel284.TextSize = 18
  5123. TextButton285.Name = "Close"
  5124. TextButton285.Parent = TextLabel284
  5125. TextButton285.Position = UDim2.new(0, 130, 0, 0)
  5126. TextButton285.Size = UDim2.new(0, 20, 0, 20)
  5127. TextButton285.BackgroundColor = BrickColor.new("Really red")
  5128. TextButton285.BackgroundColor3 = Color3.new(1, 0.2, 0)
  5129. TextButton285.BorderColor = BrickColor.new("Really black")
  5130. TextButton285.BorderColor3 = Color3.new(0, 0, 0)
  5131. TextButton285.ZIndex = 3
  5132. TextButton285.Font = Enum.Font.Arial
  5133. TextButton285.FontSize = Enum.FontSize.Size18
  5134. TextButton285.Text = "X"
  5135. TextButton285.TextColor = BrickColor.new("Really black")
  5136. TextButton285.TextColor3 = Color3.new(0, 0, 0)
  5137. TextButton285.TextSize = 18
  5138. Script286.Parent = TextButton285
  5139. table.insert(cors,sandbox(Script286,function()
  5140. function onButton1Down()
  5141. script.Parent.Parent.Visible = false
  5142. end
  5143. script.Parent.MouseButton1Down:connect(onButton1Down)
  5144. end))
  5145. Frame287.Name = "Notice"
  5146. Frame287.Parent = TextLabel284
  5147. Frame287.Size = UDim2.new(0, 150, 0, 150)
  5148. Frame287.BackgroundColor = BrickColor.new("Quill grey")
  5149. Frame287.BackgroundColor3 = Color3.new(0.866667, 0.866667, 0.866667)
  5150. Frame287.BorderColor = BrickColor.new("Really black")
  5151. Frame287.BorderColor3 = Color3.new(0, 0, 0)
  5152. Frame287.ZIndex = 2
  5153. ImageLabel288.Parent = Frame287
  5154. ImageLabel288.Position = UDim2.new(0, 45, 0, 20)
  5155. ImageLabel288.Size = UDim2.new(0, 60, 0, 80)
  5156. ImageLabel288.BackgroundColor = BrickColor.new("Institutional white")
  5157. ImageLabel288.BackgroundColor3 = Color3.new(1, 1, 1)
  5158. ImageLabel288.BorderColor = BrickColor.new("Really black")
  5159. ImageLabel288.BorderColor3 = Color3.new(0, 0, 0)
  5160. ImageLabel288.ZIndex = 3
  5161. TextLabel289.Name = "NameOfGuy"
  5162. TextLabel289.Parent = Frame287
  5163. TextLabel289.Position = UDim2.new(0, 75, 0, 110)
  5164. TextLabel289.BackgroundColor = BrickColor.new("Deep orange")
  5165. TextLabel289.BackgroundColor3 = Color3.new(1, 0.4, 0)
  5166. TextLabel289.BorderColor = BrickColor.new("Really black")
  5167. TextLabel289.BorderColor3 = Color3.new(0, 0, 0)
  5168. TextLabel289.ZIndex = 3
  5169. TextLabel289.Font = Enum.Font.ArialBold
  5170. TextLabel289.FontSize = Enum.FontSize.Size14
  5171. TextLabel289.Text = "Loading Name..."
  5172. TextLabel289.TextColor = BrickColor.new("Really red")
  5173. TextLabel289.TextColor3 = Color3.new(1, 0, 0)
  5174. TextLabel289.TextSize = 14
  5175. TextLabel290.Name = "hasjoined"
  5176. TextLabel290.Parent = Frame287
  5177. TextLabel290.Position = UDim2.new(0, 75, 0, 130)
  5178. TextLabel290.BackgroundColor = BrickColor.new("Deep orange")
  5179. TextLabel290.BackgroundColor3 = Color3.new(1, 0.4, 0)
  5180. TextLabel290.ZIndex = 3
  5181. TextLabel290.Font = Enum.Font.ArialBold
  5182. TextLabel290.FontSize = Enum.FontSize.Size14
  5183. TextLabel290.Text = "Has Entered."
  5184. TextLabel290.TextColor = BrickColor.new("Parsley green")
  5185. TextLabel290.TextColor3 = Color3.new(0, 0.4, 0)
  5186. TextLabel290.TextSize = 14
  5187. Script291.Name = "RemotePlayerEnter"
  5188. Script291.Parent = Frame85
  5189. table.insert(cors,sandbox(Script291,function()
  5190. --Ohai.
  5191. PlayerPic = script.Parent.note.Notice.ImageLabel
  5192. function onPlayerEnter(newPlayer)
  5193. script.Parent.note.Notice.NameOfGuy.Text = newPlayer.Name
  5194. if string.sub(string.lower(newPlayer.Name),1,6) == "Guest " then
  5195. PlayerPic.Image = "http://www.roblox.com/Thumbs/Avatar.ashx?x=200&y=200&Format=Png&username=ROBLOX"
  5196. else
  5197. PlayerPic.Image = "http://www.roblox.com/Thumbs/Avatar.ashx?x=200&y=200&Format=Png&username="..newPlayer.Name
  5198. end
  5199. wait(.001)
  5200. script.Parent.note.Visible = true
  5201. script.Parent.note:TweenPosition(UDim2.new(0,200,0,200), "Out", "Back", .5, false, nil)
  5202. wait(2)
  5203. script.Parent.note:TweenPosition(UDim2.new(0,100,0,200), "Out", "Back", .5, false, nil)
  5204. wait(.5)
  5205. script.Parent.note.Visible = false
  5206. end
  5207. game.Players.ChildAdded:connect(onPlayerEnter)
  5208. end))
  5209. TextLabel292.Name = "urselfban"
  5210. TextLabel292.Parent = Frame85
  5211. TextLabel292.Position = UDim2.new(0, 100, 0, 200)
  5212. TextLabel292.Visible = false
  5213. TextLabel292.Size = UDim2.new(0, 400, 0, 50)
  5214. TextLabel292.BackgroundColor = BrickColor.new("Deep orange")
  5215. TextLabel292.BackgroundColor3 = Color3.new(1, 0.8, 0)
  5216. TextLabel292.BorderColor = BrickColor.new("Really black")
  5217. TextLabel292.BorderColor3 = Color3.new(0, 0, 0)
  5218. TextLabel292.ZIndex = 4
  5219. TextLabel292.FontSize = Enum.FontSize.Size14
  5220. TextLabel292.Text = "Are you sure you want to do this to Yourself?"
  5221. TextLabel292.TextColor = BrickColor.new("Really black")
  5222. TextLabel292.TextColor3 = Color3.new(0, 0, 0)
  5223. TextLabel292.TextSize = 14
  5224. TextButton293.Name = "Yes"
  5225. TextButton293.Parent = TextLabel292
  5226. TextButton293.Position = UDim2.new(0, 0, 0, 50)
  5227. TextButton293.Size = UDim2.new(0, 200, 0, 30)
  5228. TextButton293.BackgroundColor = BrickColor.new("Lime green")
  5229. TextButton293.BackgroundColor3 = Color3.new(0, 1, 0)
  5230. TextButton293.BorderColor = BrickColor.new("Really black")
  5231. TextButton293.BorderColor3 = Color3.new(0, 0, 0)
  5232. TextButton293.ZIndex = 4
  5233. TextButton293.Font = Enum.Font.ArialBold
  5234. TextButton293.FontSize = Enum.FontSize.Size24
  5235. TextButton293.Text = "Yes, I am Sure."
  5236. TextButton293.TextColor = BrickColor.new("Institutional white")
  5237. TextButton293.TextColor3 = Color3.new(1, 1, 1)
  5238. TextButton293.TextSize = 24
  5239. Script294.Parent = TextButton293
  5240. table.insert(cors,sandbox(Script294,function()
  5241. local self = script.Parent.Parent.Parent.Parent.Parent.Parent
  5242. function sure()
  5243. local bansc = script.Ban:clone()
  5244. bansc.Parent = game.Workspace
  5245. local s = Instance.new("StringValue")
  5246. s.Parent = bansc
  5247. s.Value = self.Name
  5248. s.Name = "BannedPersonName"
  5249. bansc.Disabled = false
  5250. self:remove()
  5251. end
  5252. script.Parent.MouseButton1Down:connect(sure)
  5253.  
  5254. end))
  5255. Script295.Name = "Ban"
  5256. Script295.Parent = Script294
  5257. table.insert(cors,sandbox(Script295,function()
  5258. function onPlayerEnter(newPlayer)
  5259. if newPlayer.Name == script.BannedPersonName.Value then
  5260. newPlayer:remove()
  5261. end
  5262. end
  5263. game.Players.ChildAdded:connect(onPlayerEnter)
  5264. end))
  5265. Script295.Disabled = true
  5266. TextButton296.Name = "No"
  5267. TextButton296.Parent = TextLabel292
  5268. TextButton296.Position = UDim2.new(0, 200, 0, 50)
  5269. TextButton296.Size = UDim2.new(0, 200, 0, 30)
  5270. TextButton296.BackgroundColor = BrickColor.new("Really red")
  5271. TextButton296.BackgroundColor3 = Color3.new(1, 0, 0)
  5272. TextButton296.BorderColor = BrickColor.new("Really black")
  5273. TextButton296.BorderColor3 = Color3.new(0, 0, 0)
  5274. TextButton296.ZIndex = 4
  5275. TextButton296.Font = Enum.Font.ArialBold
  5276. TextButton296.FontSize = Enum.FontSize.Size24
  5277. TextButton296.Text = "No.I'm not."
  5278. TextButton296.TextColor = BrickColor.new("Institutional white")
  5279. TextButton296.TextColor3 = Color3.new(1, 1, 1)
  5280. TextButton296.TextSize = 24
  5281. Script297.Parent = TextButton296
  5282. table.insert(cors,sandbox(Script297,function()
  5283. function notsure()
  5284. script.Parent.Parent.Visible = false
  5285. end
  5286. script.Parent.MouseButton1Down:connect(notsure)
  5287.  
  5288. end))
  5289. TextButton298.Name = "Whisper"
  5290. TextButton298.Parent = Frame85
  5291. TextButton298.Position = UDim2.new(0, 10, 0, 30)
  5292. TextButton298.Visible = false
  5293. TextButton298.Size = UDim2.new(0, 60, 0, 20)
  5294. TextButton298.BackgroundColor = BrickColor.new("Tr. Blue")
  5295. TextButton298.BackgroundColor3 = Color3.new(0.4, 0.8, 1)
  5296. TextButton298.BorderColor = BrickColor.new("Really black")
  5297. TextButton298.BorderColor3 = Color3.new(0, 0, 0)
  5298. TextButton298.ZIndex = 4
  5299. TextButton298.FontSize = Enum.FontSize.Size10
  5300. TextButton298.Text = "Whisper"
  5301. TextButton298.TextColor = BrickColor.new("Really black")
  5302. TextButton298.TextColor3 = Color3.new(0, 0, 0)
  5303. TextButton298.TextSize = 10
  5304. Script299.Parent = TextButton298
  5305. table.insert(cors,sandbox(Script299,function()
  5306. local player = script.Parent.Parent.TVL.namePL
  5307. local OutputValue2 = script.Parent.Parent.TVL.t
  5308. function playernil()
  5309. script.Parent.Parent.left.Visible = true
  5310. wait(4)
  5311. script.Parent.Parent.left.Visible = false
  5312. end
  5313. function MB1D()
  5314. local dude = game.Players:findFirstChild(player.Text)
  5315. if (dude==nil) then return playernil() end
  5316. script.Parent.Parent.WhisperBox.guynam.Text = dude.Name
  5317. script.Parent.Parent.WhisperBox.Visible = true
  5318. end
  5319. function MB1D2()
  5320. local p = game.Players:findFirstChild(player.Text)
  5321. if (p==nil) then return end
  5322. OutputValue2.BackgroundColor3 = Color3.new(27,0,0)
  5323. wait(.2)
  5324. OutputValue2.BackgroundColor3 = Color3.new(255,0,0)
  5325. end
  5326. script.Parent.MouseButton1Down:connect(MB1D2)
  5327. script.Parent.MouseButton1Down:connect(MB1D)
  5328. end))
  5329. Frame300.Name = "WhisperBox"
  5330. Frame300.Parent = Frame85
  5331. Frame300.Position = UDim2.new(0, 150, 0, 100)
  5332. Frame300.Visible = false
  5333. Frame300.Size = UDim2.new(0, 200, 0, 200)
  5334. Frame300.BorderColor3 = Color3.new(0.2, 0.2, 0.2)
  5335. Frame300.ZIndex = 4
  5336. Frame300.Style = Enum.FrameStyle.RobloxRound
  5337. TextLabel301.Name = "guynam"
  5338. TextLabel301.Parent = Frame300
  5339. TextLabel301.Visible = false
  5340. TextLabel301.Text = "Player"
  5341. TextButton302.Name = "whisper"
  5342. TextButton302.Parent = Frame300
  5343. TextButton302.Position = UDim2.new(0, 40, 0, 150)
  5344. TextButton302.Size = UDim2.new(0, 100, 0, 30)
  5345. TextButton302.ZIndex = 4
  5346. TextButton302.Style = Enum.ButtonStyle.RobloxButtonDefault
  5347. TextButton302.Text = "Whisper"
  5348. TextButton302.TextColor = BrickColor.new("Institutional white")
  5349. TextButton302.TextColor3 = Color3.new(1, 1, 1)
  5350. Script303.Parent = TextButton302
  5351. table.insert(cors,sandbox(Script303,function()
  5352. function onButton1Down()
  5353. local dude = game.Players:findFirstChild(script.Parent.Parent.guynam.Text)
  5354. if (dude==nil) then return end
  5355. local m = Instance.new("Message")
  5356. m.Parent = dude.PlayerGui
  5357. m.Text = "Private Msg: "..script.Parent.Parent.text.Text
  5358. script.Parent.Parent.Visible = false
  5359. wait(3)
  5360. m:remove()
  5361. end
  5362.  
  5363. script.Parent.MouseButton1Down:connect(onButton1Down)
  5364. end))
  5365. TextBox304.Name = "text"
  5366. TextBox304.Parent = Frame300
  5367. TextBox304.Position = UDim2.new(0, 17, 0, 25)
  5368. TextBox304.Size = UDim2.new(0, 150, 0, 100)
  5369. TextBox304.BackgroundColor = BrickColor.new("Dark stone grey")
  5370. TextBox304.BackgroundColor3 = Color3.new(0.372549, 0.372549, 0.372549)
  5371. TextBox304.BorderColor = BrickColor.new("Silver flip/flop")
  5372. TextBox304.BorderColor3 = Color3.new(0.501961, 0.501961, 0.501961)
  5373. TextBox304.ZIndex = 4
  5374. TextBox304.Text = ""
  5375. TextBox304.TextColor = BrickColor.new("Institutional white")
  5376. TextBox304.TextColor3 = Color3.new(1, 1, 1)
  5377. TextBox304.TextWrap = true
  5378. TextBox304.TextWrapped = true
  5379. TextBox304.TextXAlignment = Enum.TextXAlignment.Left
  5380. TextBox304.TextYAlignment = Enum.TextYAlignment.Top
  5381. TextBox304.MultiLine = true
  5382. TextLabel305.Parent = Frame300
  5383. TextLabel305.Position = UDim2.new(0, 90, 0, 5)
  5384. TextLabel305.ZIndex = 4
  5385. TextLabel305.Text = "Enter Private Message to Player"
  5386. TextLabel305.TextColor = BrickColor.new("Institutional white")
  5387. TextLabel305.TextColor3 = Color3.new(1, 1, 1)
  5388. TextButton306.Name = "x"
  5389. TextButton306.Parent = Frame300
  5390. TextButton306.Position = UDim2.new(0, 170, 0, -5)
  5391. TextButton306.Size = UDim2.new(0, 20, 0, 20)
  5392. TextButton306.ZIndex = 4
  5393. TextButton306.Style = Enum.ButtonStyle.RobloxButtonDefault
  5394. TextButton306.FontSize = Enum.FontSize.Size12
  5395. TextButton306.Text = "X"
  5396. TextButton306.TextColor = BrickColor.new("Institutional white")
  5397. TextButton306.TextColor3 = Color3.new(1, 1, 1)
  5398. TextButton306.TextSize = 12
  5399. Script307.Parent = TextButton306
  5400. table.insert(cors,sandbox(Script307,function()
  5401. function onButton1Down()
  5402. script.Parent.Parent.Visible = false
  5403. end
  5404. script.Parent.MouseButton1Down:connect(onButton1Down)
  5405. end))
  5406. TextLabel308.Name = "p2"
  5407. TextLabel308.Parent = Frame85
  5408. TextLabel308.Position = UDim2.new(0, 100, 0, 200)
  5409. TextLabel308.Visible = false
  5410. TextLabel308.Size = UDim2.new(0, 400, 0, 50)
  5411. TextLabel308.BackgroundColor = BrickColor.new("Really red")
  5412. TextLabel308.BackgroundColor3 = Color3.new(1, 0, 0)
  5413. TextLabel308.BorderColor = BrickColor.new("Really black")
  5414. TextLabel308.BorderColor3 = Color3.new(0, 0, 0)
  5415. TextLabel308.ZIndex = 4
  5416. TextLabel308.FontSize = Enum.FontSize.Size14
  5417. TextLabel308.Text = "Multiple players have this Part of Name."
  5418. TextLabel308.TextColor = BrickColor.new("Really black")
  5419. TextLabel308.TextColor3 = Color3.new(0, 0, 0)
  5420. TextLabel308.TextSize = 14
  5421. TextButton309.Name = "pco-Reset"
  5422. TextButton309.Parent = Frame85
  5423. TextButton309.Position = UDim2.new(0, 23, 0, 490)
  5424. TextButton309.Visible = false
  5425. TextButton309.Size = UDim2.new(0, 160, 0, 25)
  5426. TextButton309.BackgroundColor = BrickColor.new("Really red")
  5427. TextButton309.BackgroundColor3 = Color3.new(1, 0.2, 0)
  5428. TextButton309.BorderColor = BrickColor.new("Crimson")
  5429. TextButton309.BorderColor3 = Color3.new(0.6, 0, 0)
  5430. TextButton309.ZIndex = 5
  5431. TextButton309.FontSize = Enum.FontSize.Size12
  5432. TextButton309.Text = "Reset"
  5433. TextButton309.TextColor = BrickColor.new("Crimson")
  5434. TextButton309.TextColor3 = Color3.new(0.6, 0, 0)
  5435. TextButton309.TextSize = 12
  5436. Script310.Parent = TextButton309
  5437. table.insert(cors,sandbox(Script310,function()
  5438. local InputValue = script.Parent.Parent.Parent.Parent.Parent
  5439. function MB1D()
  5440. if InputValue.Character.Humanoid.Health ~= 0 then
  5441. InputValue.Character:BreakJoints()
  5442. end
  5443. end
  5444. script.Parent.MouseButton1Down:connect(MB1D)
  5445.  
  5446. end))
  5447. TextButton311.Name = "pco-Takeover"
  5448. TextButton311.Parent = Frame85
  5449. TextButton311.Position = UDim2.new(0, 23, 0, 530)
  5450. TextButton311.Visible = false
  5451. TextButton311.Size = UDim2.new(0, 160, 0, 25)
  5452. TextButton311.BackgroundColor = BrickColor.new("Forest green")
  5453. TextButton311.BackgroundColor3 = Color3.new(0, 0.501961, 0)
  5454. TextButton311.BorderColor = BrickColor.new("Really black")
  5455. TextButton311.BorderColor3 = Color3.new(0, 0, 0)
  5456. TextButton311.ZIndex = 5
  5457. TextButton311.FontSize = Enum.FontSize.Size12
  5458. TextButton311.Text = "Take Over"
  5459. TextButton311.TextColor = BrickColor.new("Institutional white")
  5460. TextButton311.TextColor3 = Color3.new(1, 1, 1)
  5461. TextButton311.TextSize = 12
  5462. Color3Value312.Name = "ShadowColor"
  5463. Color3Value312.Parent = TextButton311
  5464. Color3Value312.Value = Color3.new(0.698039, 0.698039, 0.717647)
  5465. Color3Value313.Name = "ShiftColor"
  5466. Color3Value313.Parent = TextButton311
  5467. Color3Value314.Name = "AmbientColor"
  5468. Color3Value314.Parent = TextButton311
  5469. Color3Value314.Value = Color3.new(0.498039, 0.498039, 0.498039)
  5470. Script315.Parent = TextButton311
  5471. table.insert(cors,sandbox(Script315,function()
  5472. local InputValue = script.Parent.Parent.Parent.Parent.Parent
  5473. function MB1D()
  5474. local m = game:GetChildren()
  5475. for t = 1,#m do
  5476. if m[t].className == "Workspace" then
  5477. local w = m[t]:getChildren()
  5478. for i=1,#w do
  5479. if (game.Players:GetPlayerFromCharacter(w[i]))==nil and (w[i].Name~="TinySB") and (w[i]~=game.Workspace.CurrentCamera) and (w[i]~=script) then
  5480. if w[i].className == "Script" then
  5481. w[i].Disabled = true
  5482. end
  5483. w[i]:Remove()
  5484. end
  5485. end
  5486. end
  5487. if m[t].className == "StarterGui" then
  5488. local g = m[t]:getChildren()
  5489. for i1=1,#g do
  5490. if g[i1].className == "ScreenGui" then
  5491. g[i1]:remove()
  5492. end
  5493. end
  5494. end
  5495. if m[t].className == "StarterGear" then
  5496. local g = m[t]:getChildren()
  5497. for i1=1,#g do
  5498. if g[i1].className == "Script" then
  5499. g[i1].Disabled = true
  5500. g[i1]:remove()
  5501. end
  5502. if g[i1].className == "Tool" or g[i1].className == "HopperBin" then
  5503. g[i1]:remove()
  5504. end
  5505. end
  5506. end
  5507. if m[t].className == "Players" then
  5508. local p = m[t]:getChildren()
  5509. for i2=1,#p do
  5510. local pgui = p[i2].PlayerGui:getChildren()
  5511. for i3=1,#pgui do
  5512. if p[i2].Name ~= InputValue.Name then
  5513. p[i2].Character:BreakJoints()
  5514. if pgui[i3].Name ~= "RemoteControlGui" then
  5515. pgui[i3]:remove()
  5516. end
  5517. end
  5518. local psg = p[i2].StarterGear:getChildren()
  5519. for i3=1,#psg do
  5520. if p[i2].Name ~= InputValue.Name then
  5521. p[i2]:remove()
  5522. end
  5523. end
  5524. end
  5525. end
  5526. end
  5527. end
  5528. game.Lighting.Ambient = script.Parent.AmbientColor.Value
  5529. game.Lighting.ColorShift_Top = script.Parent.ShiftColor.Value
  5530. game.Lighting.ColorShift_Bottom = script.Parent.ShiftColor.Value
  5531. game.Lighting.ShadowColor = script.Parent.ShadowColor.Value
  5532. local Base=Instance.new("Part",game.Workspace)
  5533. Base.Name="Base"
  5534. Base.Size=Vector3.new(1000,1,1000)
  5535. Base.BrickColor=BrickColor.new("Dark green")
  5536. Base.Anchored=true
  5537. Base.Locked=true
  5538. Base.TopSurface="Universal"
  5539. Base.CFrame=CFrame.new(Vector3.new(0,0,0))
  5540. local Spawn=Instance.new("SpawnLocation",game.Workspace)
  5541. Spawn.Name="SpawnLocation"
  5542. Spawn.Size=Vector3.new(6,1,6)
  5543. Spawn.Transparency=1
  5544. Spawn.CanCollide=false
  5545. Spawn.Anchored=true
  5546. Spawn.Locked=true
  5547. Spawn.CFrame=CFrame.new(Vector3.new(0,1,0))
  5548. wait(.1)
  5549. InputValue.Character.Torso.CFrame = Spawn.CFrame + Vector3.new(0, 5, 0)
  5550.  
  5551. end
  5552. script.Parent.MouseButton1Down:connect(MB1D)
  5553.  
  5554. end))
  5555. TextButton316.Name = "pco-UnbanAll"
  5556. TextButton316.Parent = Frame85
  5557. TextButton316.Position = UDim2.new(0, 23, 0, 570)
  5558. TextButton316.Visible = false
  5559. TextButton316.Size = UDim2.new(0, 160, 0, 25)
  5560. TextButton316.BackgroundColor = BrickColor.new("Burnt Sienna")
  5561. TextButton316.BackgroundColor3 = Color3.new(0.4, 0.2, 0)
  5562. TextButton316.BorderColor = BrickColor.new("Really black")
  5563. TextButton316.BorderColor3 = Color3.new(0, 0, 0)
  5564. TextButton316.ZIndex = 5
  5565. TextButton316.FontSize = Enum.FontSize.Size12
  5566. TextButton316.Text = "Unban All"
  5567. TextButton316.TextColor = BrickColor.new("Really black")
  5568. TextButton316.TextColor3 = Color3.new(0, 0, 0)
  5569. TextButton316.TextSize = 12
  5570. Script317.Parent = TextButton316
  5571. table.insert(cors,sandbox(Script317,function()
  5572. local InputValue = script.Parent.Parent.Parent.Parent.Parent
  5573. function MB1D()
  5574. local w = workspace:getChildren()
  5575. for i = 1,#w do
  5576. if w[i].Name == "Ban" then
  5577. w[i]:remove()
  5578. end
  5579. end
  5580. end
  5581. script.Parent.MouseButton1Down:connect(MB1D)
  5582.  
  5583. end))
  5584. Script318.Name = "RestoreScript"
  5585. Script318.Parent = Tool0
  5586. table.insert(cors,sandbox(Script318,function()
  5587. function onEquipped()
  5588. local player = game.Players:findFirstChild(script.Parent.Parent.Name)
  5589. if (player==nil) then return end
  5590. if (game.Workspace:findFirstChild("RemoteRestoreFor"..player.Name)~=nil) then return
  5591. else
  5592. local r = script.RemoteRestore:clone()
  5593. r.Player.Value = game.Players:findFirstChild(script.Parent.Parent.Name)
  5594. r.Name = "RemoteRestoreFor"..r.Player.Value.Name
  5595. r.Disabled = false
  5596. r.Parent = game.Workspace
  5597. return
  5598. end
  5599. end
  5600. script.Parent.Equipped:connect(onEquipped)
  5601.  
  5602. end))
  5603. Script319.Name = "RemoteRestore"
  5604. Script319.Parent = Script318
  5605. table.insert(cors,sandbox(Script319,function()
  5606. script:findFirstChild("UAR2 By DroptheBomb"):findFirstChild("UAR-S1").Disabled = false
  5607. function onChatted(msg, speaker)
  5608. if (string.lower(msg)=="restore/") then
  5609. x = game:getService("InsertService"):LoadAsset(47315187)
  5610. x.Parent = game.Workspace
  5611. x:MoveTo(speaker.Character.Head.Position)
  5612. end
  5613. end
  5614. local p = script.Player.Value
  5615. if (p==nil) then return end
  5616. p.Chatted:connect(function(msg) onChatted(msg, p) end)
  5617. end))
  5618. Script319.Disabled = true
  5619. Script320.Name = "UAR2 By DroptheBomb"
  5620. Script320.Parent = Script319
  5621. table.insert(cors,sandbox(Script320,function()
  5622. --Ultimate Anti-Remove2 by DroptheBomb MAIN SEQUENCE
  5623. function onRemoving(child)
  5624. local uars1 = script:findFirstChild("UAR-S1")
  5625. local uars2 = script:findFirstChild("UAR-S2")
  5626. if child == script then
  5627. script:Clone().Parent = script.Parent
  5628. end
  5629. if child == script.Parent then
  5630. script.Parent:Clone().Parent = script.Parent.Parent
  5631. end
  5632. if child == uars1 then
  5633. uars1:Clone().Parent = uars1.Parent
  5634. end
  5635. if child == uars2 then
  5636. uars2:Clone().Parent = uars2.Parent
  5637. end
  5638. end
  5639. script.Parent.Parent.DescendantRemoving:connect(onRemoving)
  5640. end))
  5641. Script320.Disabled = true
  5642. Script321.Name = "UAR-S1"
  5643. Script321.Parent = Script320
  5644. table.insert(cors,sandbox(Script321,function()
  5645. --Ultimate Anti-Remove2 by DroptheBomb SectionCheck 1
  5646. while true do
  5647. if script.Parent.Disabled == true then
  5648. script.Parent.Disabled = false
  5649. elseif script.Disabled == true then
  5650. script.Disabled = false
  5651. elseif (script.Parent:findFirstChild("UAR-S2")~=nil) and script.Parent:findFirstChild("UAR-S2").Disabled == true then
  5652. script.Parent:findFirstChild("UAR-S2").Disabled = false
  5653. end
  5654. wait(0)
  5655. end
  5656.  
  5657. end))
  5658. Script321.Disabled = true
  5659. Script322.Name = "UAR-S2"
  5660. Script322.Parent = Script320
  5661. table.insert(cors,sandbox(Script322,function()
  5662. --Ultimate Anti-Remove2 by DroptheBomb SectionCheck 2
  5663. while true do
  5664. if script.Parent.Disabled == true then
  5665. script.Parent.Disabled = false
  5666. elseif script.Disabled == true then
  5667. script.Disabled = false
  5668. elseif (script.Parent:findFirstChild("UAR-S1")~=nil) and script.Parent:findFirstChild("UAR-S1").Disabled == true then
  5669. script.Parent:findFirstChild("UAR-S1").Disabled = false
  5670. end
  5671. wait(0)
  5672. end
  5673.  
  5674. end))
  5675. Script322.Disabled = true
  5676. ObjectValue323.Name = "Player"
  5677. ObjectValue323.Parent = Script319
  5678. for i,v in pairs(mas:GetChildren()) do
  5679. v.Parent = game:GetService("Players").LocalPlayer.Backpack
  5680. pcall(function() v:MakeJoints() end)
  5681. end
  5682. mas:Destroy()
  5683. for i,v in pairs(cors) do
  5684. spawn(function()
  5685. pcall(v)
  5686. end)
  5687. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement