AALTTz

test

Jan 4th, 2023 (edited)
24
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 105.85 KB | None | 0 0
  1. if game.PlaceId == 9431306429 then
  2. getgenv().adverting = false
  3. local vu = game:GetService("VirtualUser")
  4. game:GetService("Players").LocalPlayer.Idled:connect(function()
  5. vu:Button2Down(Vector2.new(0, 0), workspace.CurrentCamera.CFrame)
  6. wait(1)
  7. vu:Button2Up(Vector2.new(0, 0), workspace.CurrentCamera.CFrame)
  8. end)
  9.  
  10. getgenv().isDropping = false
  11. local speed = 50
  12. local c
  13. local h
  14. local bv
  15. local bav
  16. local cam
  17. local flying
  18. local p = game.Players.LocalPlayer
  19. local buttons = {
  20. W = false,
  21. S = false,
  22. A = false,
  23. D = false,
  24. Moving = false
  25. }
  26.  
  27. local startFly = function()
  28. if not p.Character or not p.Character.Head or flying then
  29. return
  30. end
  31. c = p.Character
  32. h = c.Humanoid
  33. h.PlatformStand = true
  34. cam = workspace:WaitForChild('Camera')
  35. bv = Instance.new("BodyVelocity")
  36. bav = Instance.new("BodyAngularVelocity")
  37. bv.Velocity, bv.MaxForce, bv.P = Vector3.new(0, 0, 0), Vector3.new(10000, 10000, 10000), 1000
  38. bav.AngularVelocity, bav.MaxTorque, bav.P = Vector3.new(0, 0, 0), Vector3.new(10000, 10000, 10000), 1000
  39. bv.Parent = c.Head
  40. bav.Parent = c.Head
  41. flying = true
  42. h.Died:connect(function()
  43. flying = false
  44. end)
  45. end
  46.  
  47. local Players = game:GetService('Players')
  48.  
  49. local endFly = function()
  50. if not p.Character or not flying then
  51. return
  52. end
  53. h.PlatformStand = false
  54. bv:Destroy()
  55. bav:Destroy()
  56. flying = false
  57. end
  58.  
  59. game:GetService("UserInputService").InputBegan:connect(function(input, GPE)
  60. if GPE then
  61. return
  62. end
  63. for i, e in pairs(buttons) do
  64. if i ~= "Moving" and input.KeyCode == Enum.KeyCode[i] then
  65. buttons[i] = true
  66. buttons.Moving = true
  67. end
  68. end
  69. end)
  70.  
  71. game:GetService("UserInputService").InputEnded:connect(function(input, GPE)
  72. if GPE then
  73. return
  74. end
  75. local a = false
  76. for i, e in pairs(buttons) do
  77. if i ~= "Moving" then
  78. if input.KeyCode == Enum.KeyCode[i] then
  79. buttons[i] = false
  80. end
  81. if buttons[i] then
  82. a = true
  83. end
  84. end
  85. end
  86. buttons.Moving = a
  87. end)
  88.  
  89. local setVec = function(vec)
  90. return vec * (speed / vec.Magnitude)
  91. end
  92.  
  93. game:GetService("RunService").Heartbeat:connect(function(step)
  94. if flying and c and c.PrimaryPart then
  95. local p = c.PrimaryPart.Position
  96. local cf = cam.CFrame
  97. local ax, ay, az = cf:toEulerAnglesXYZ()
  98. c:SetPrimaryPartCFrame(CFrame.new(p.x, p.y, p.z) * CFrame.Angles(ax, ay, az))
  99. if buttons.Moving then
  100. local t = Vector3.new()
  101. if buttons.W then
  102. t = t + (setVec(cf.lookVector))
  103. end
  104. if buttons.S then
  105. t = t - (setVec(cf.lookVector))
  106. end
  107. if buttons.A then
  108. t = t - (setVec(cf.rightVector))
  109. end
  110. if buttons.D then
  111. t = t + (setVec(cf.rightVector))
  112. end
  113. c:TranslateBy(t * step)
  114. end
  115. end
  116. end)
  117. Players.PlayerAdded:Connect(function(player)
  118. game.StarterGui:SetCore("SendNotification", {
  119. Title = "Someone joined!",
  120. Text = player.name .. " joined the game.",
  121. Duration = 5
  122. })
  123. end)
  124.  
  125. local function PlayerAdded(Player)
  126. local function Chatted(Message)
  127. local plr = game.Players.LocalPlayer
  128. local character = plr.Character or plr.CharacterAdded:Wait()
  129. local humanoid = character:FindFirstChild("Humanoid")
  130. local PlayerHumanoid = plr.Character:WaitForChild("Humanoid")
  131. local targetHumanoid = Player.Character:WaitForChild("Humanoid")
  132. local LastTargetPosition = targetHumanoid.RootPart.CFrame
  133. local Length = 3
  134.  
  135. if Player.UserId == getgenv().controller then
  136.  
  137. local finalMsg = Message:lower()
  138.  
  139. for i, v in pairs(getgenv().alts) do
  140. if v == plr.UserId then
  141. if finalMsg == getgenv().prefix .. "fly " .. plr.Name:lower() then
  142. startFly()
  143.  
  144. end
  145. if finalMsg == getgenv().prefix .. "fly" then
  146. startFly()
  147.  
  148. end
  149. if finalMsg == getgenv().prefix .. "setup school" then
  150. game.Players.LocalPlayer.Character.Head.Anchored = false
  151. for i, v in pairs(getgenv().alts) do
  152. if i == "Alt1" then
  153. if v == plr.UserId then
  154. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  155. CFrame.new(-810, 170, -4)
  156. end
  157. end
  158. if i == "Alt2" then
  159. if v == plr.UserId then
  160. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  161. CFrame.new(-800, 170, -4)
  162. end
  163. end
  164. if i == "Alt3" then
  165. if v == plr.UserId then
  166. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  167. CFrame.new(-790, 170, -4)
  168. end
  169. end
  170. if i == "Alt4" then
  171. if v == plr.UserId then
  172. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  173. CFrame.new(-810, 190, -4)
  174. end
  175. end
  176. if i == "Alt5" then
  177. if v == plr.UserId then
  178. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  179. CFrame.new(800, 190, -4)
  180. end
  181. end
  182. if i == "Alt6" then
  183. if v == plr.UserId then
  184. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  185. CFrame.new(-790, 190, -4)
  186. end
  187. end
  188. end
  189. end
  190.  
  191. if finalMsg == getgenv().prefix .. "setup bank" then
  192. game.Players.LocalPlayer.Character.Head.Anchored = false
  193. for i, v in pairs(getgenv().alts) do
  194. if i == "Alt1" then
  195. if v == plr.UserId then
  196. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  197. CFrame.new(-389, 21, -338)
  198. end
  199. end
  200. if i == "Alt2" then
  201. if v == plr.UserId then
  202. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  203. CFrame.new(-385, 21, -338)
  204. end
  205. end
  206. if i == "Alt3" then
  207. if v == plr.UserId then
  208. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  209. CFrame.new(-380, 21, -337)
  210. end
  211. end
  212. if i == "Alt4" then
  213. if v == plr.UserId then
  214. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  215. CFrame.new(-376, 21, -338)
  216. end
  217. end
  218. if i == "Alt5" then
  219. if v == plr.UserId then
  220. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  221. CFrame.new(-370, 21, -338)
  222. end
  223. end
  224. if i == "Alt6" then
  225. if v == plr.UserId then
  226. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  227. CFrame.new(-366, 21, -338)
  228. end
  229. end
  230. if i == "Alt7" then
  231. if v == plr.UserId then
  232. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  233. CFrame.new(-361, 21, -338)
  234. end
  235. end
  236. if i == "Alt8" then
  237. if v == plr.UserId then
  238. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  239. CFrame.new(-361, 21, -333)
  240. end
  241. end
  242. if i == "Alt9" then
  243. if v == plr.UserId then
  244. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  245. CFrame.new(-365, 21, -334)
  246. end
  247. end
  248. if i == "Alt10" then
  249. if v == plr.UserId then
  250. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  251. CFrame.new(-370, 21, -334)
  252. end
  253. end
  254. if i == "Alt11" then
  255. if v == plr.UserId then
  256. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  257. CFrame.new(-375, 21, -334)
  258. end
  259. end
  260. if i == "Alt12" then
  261. if v == plr.UserId then
  262. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  263. CFrame.new(-381, 21, -334)
  264. end
  265. end
  266. if i == "Alt13" then
  267. if v == plr.UserId then
  268. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  269. CFrame.new(-386, 21, -334)
  270. end
  271. end
  272. if i == "Alt14" then
  273. if v == plr.UserId then
  274. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  275. CFrame.new(-390, 21, -334)
  276. end
  277. end
  278. if i == "Alt15" then
  279. if v == plr.UserId then
  280. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  281. CFrame.new(-390, 21, -331)
  282. end
  283. end
  284. if i == "Alt16" then
  285. if v == plr.UserId then
  286. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  287. CFrame.new(-386, 21, -331)
  288. end
  289. end
  290. if i == "Alt17" then
  291. if v == plr.UserId then
  292. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  293. CFrame.new(-382, 21, -331)
  294. end
  295. end
  296. if i == "Alt18" then
  297. if v == plr.UserId then
  298. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  299. CFrame.new(-376, 21, -331)
  300. end
  301. end
  302. if i == "Alt19" then
  303. if v == plr.UserId then
  304. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  305. CFrame.new(-371, 21, -331)
  306. end
  307. end
  308. if i == "Alt20" then
  309. if v == plr.UserId then
  310. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  311. CFrame.new(-366, 21, -331)
  312. end
  313. end
  314. if i == "Alt21" then
  315. if v == plr.UserId then
  316. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  317. CFrame.new(-361, 21, -331)
  318. end
  319. end
  320. if i == "Alt22" then
  321. if v == plr.UserId then
  322. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  323. CFrame.new(-361, 21, -327)
  324. end
  325. end
  326. if i == "Alt23" then
  327. if v == plr.UserId then
  328. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  329. CFrame.new(-365, 21, -327)
  330. end
  331. end
  332. if i == "Alt24" then
  333. if v == plr.UserId then
  334. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  335. CFrame.new(-371, 21, -326)
  336. end
  337. end
  338. if i == "Alt25" then
  339. if v == plr.UserId then
  340. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  341. CFrame.new(-376, 21, -327)
  342. end
  343. end
  344. if i == "Alt26" then
  345. if v == plr.UserId then
  346. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  347. CFrame.new(-381, 21, -326)
  348. end
  349. end
  350. if i == "Alt27" then
  351. if v == plr.UserId then
  352. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  353. CFrame.new(-385, 21, -327)
  354. end
  355. end
  356. if i == "Alt28" then
  357. if v == plr.UserId then
  358. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  359. CFrame.new(-390, 21, -323)
  360. end
  361. end
  362. if i == "Alt29" then
  363. if v == plr.UserId then
  364. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  365. CFrame.new(-390, 21, -326)
  366. end
  367. end
  368. if i == "Alt30" then
  369. if v == plr.UserId then
  370. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  371. CFrame.new(-390, 21, -323)
  372. end
  373. end
  374. if i == "Alt31" then
  375. if v == plr.UserId then
  376. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  377. CFrame.new(-385, 21, -323)
  378. end
  379. end
  380. if i == "Alt32" then
  381. if v == plr.UserId then
  382. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  383. CFrame.new(-381, 21, -323)
  384. end
  385. end
  386. if i == "Alt33" then
  387. if v == plr.UserId then
  388. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  389. CFrame.new(-375, 21, -324)
  390. end
  391. end
  392. if i == "Alt34" then
  393. if v == plr.UserId then
  394. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  395. CFrame.new(-370, 21, -323)
  396. end
  397. end
  398. if i == "Alt35" then
  399. if v == plr.UserId then
  400. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  401. CFrame.new(-365, 21, -324)
  402. end
  403. end
  404. if i == "Alt36" then
  405. if v == plr.UserId then
  406. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  407. CFrame.new(-360, 21, -324)
  408. end
  409. end
  410. if i == "Alt37" then
  411. if v == plr.UserId then
  412. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  413. CFrame.new(-359, 21, -318)
  414. end
  415. end
  416. if i == "Alt38" then
  417. if v == plr.UserId then
  418. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame =
  419. CFrame.new(-364, 21, -319)
  420. end
  421. end
  422. end
  423. end
  424.  
  425. if finalMsg == getgenv().prefix .. "drop" then
  426.  
  427. if getgenv().isDropping == false then
  428.  
  429. getgenv().isDropping = true
  430.  
  431. if getgenv().isDropping == true then
  432. game:GetService("VirtualInputManager"):SendKeyEvent(true, 102, false, yomama)
  433. local args = {
  434. [1] = "Started Dropping!",
  435. [2] = "All"
  436. }
  437.  
  438. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(
  439. unpack(args))
  440. end
  441. while getgenv().isDropping == true do
  442.  
  443. if game:GetService("Players").LocalPlayer.DataFolder.Currency.Value < 10000 then
  444. local args = {
  445. [1] = "Ran out of money, stopped dropping.",
  446. [2] = "All"
  447. }
  448.  
  449. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents
  450. .SayMessageRequest:FireServer(unpack(args))
  451. end
  452.  
  453. local args = {
  454. [1] = "DropMoney",
  455. [2] = "10000"
  456. }
  457.  
  458. game:GetService("ReplicatedStorage").MainEvent:FireServer(unpack(args))
  459. wait(15)
  460. end
  461. else
  462.  
  463. getgenv().isDropping = false
  464. if getgenv().isDropping == false then
  465. game:GetService("VirtualInputManager"):SendKeyEvent(false, 102, false, yomama)
  466. local args = {
  467. [1] = "Stopped Dropping!",
  468. [2] = "All"
  469. }
  470.  
  471. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(
  472. unpack(args))
  473. end
  474.  
  475. end
  476.  
  477. end
  478.  
  479. if finalMsg == getgenv().prefix .. "drop " .. plr.Name:lower() then
  480.  
  481. if getgenv().isDropping == false then
  482.  
  483. getgenv().isDropping = true
  484.  
  485. if getgenv().isDropping == true then
  486. game:GetService("VirtualInputManager"):SendKeyEvent(true, 102, false, yomama)
  487. local args = {
  488. [1] = "Started Dropping!",
  489. [2] = "All"
  490. }
  491.  
  492. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(
  493. unpack(args))
  494. end
  495. while getgenv().isDropping == true do
  496.  
  497. if game:GetService("Players").LocalPlayer.DataFolder.Currency.Value < 10000 then
  498. local args = {
  499. [1] = "Ran out of money, stopped dropping.",
  500. [2] = "All"
  501. }
  502.  
  503. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents
  504. .SayMessageRequest:FireServer(unpack(args))
  505. end
  506.  
  507. local args = {
  508. [1] = "DropMoney",
  509. [2] = "10000"
  510. }
  511.  
  512. game:GetService("ReplicatedStorage").MainEvent:FireServer(unpack(args))
  513. wait(15)
  514. end
  515. else
  516.  
  517. getgenv().isDropping = false
  518. if getgenv().isDropping == false then
  519. game:GetService("VirtualInputManager"):SendKeyEvent(false, 102, false, yomama)
  520. local args = {
  521. [1] = "Stopped Dropping!",
  522. [2] = "All"
  523. }
  524.  
  525. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(
  526. unpack(args))
  527. end
  528.  
  529. end
  530.  
  531. end
  532.  
  533. if finalMsg == getgenv().prefix .. "advert" then
  534.  
  535.  
  536. if getgenv().adverting == false then
  537.  
  538. getgenv().adverting = true
  539.  
  540. while getgenv().adverting == true do
  541.  
  542. local args = {
  543. [1] = getgenv().adMessage,
  544. [2] = "All"
  545. }
  546.  
  547. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(
  548. unpack(args))
  549. wait(getgenv().adMessageCooldown)
  550.  
  551. end
  552. else
  553.  
  554. getgenv().adverting = false
  555.  
  556. end
  557.  
  558. end
  559.  
  560. if finalMsg == getgenv().prefix .. "advert " .. plr.Name:lower() then
  561.  
  562. if getgenv().adverting == false then
  563.  
  564. getgenv().adverting = true
  565.  
  566. while getgenv().adverting == true do
  567.  
  568. local args = {
  569. [1] = getgenv().adMessage,
  570. [2] = "All"
  571. }
  572.  
  573. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(
  574. unpack(args))
  575. wait(getgenv().adMessageCooldown)
  576.  
  577. end
  578. else
  579.  
  580. getgenv().adverting = false
  581.  
  582. end
  583.  
  584. end
  585.  
  586. if finalMsg == getgenv().prefix .. "vibe" then
  587.  
  588. game:GetService("Players"):Chat("/e dance2")
  589.  
  590. end
  591. if finalMsg == getgenv().prefix .. "vibe " .. plr.Name:lower() then
  592.  
  593. game:GetService("Players"):Chat("/e dance2")
  594.  
  595. end
  596.  
  597. if finalMsg == getgenv().prefix .. "wallet " .. plr.Name:lower() then
  598. for i, v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  599. if v.name == "Wallet" then
  600. v.Parent = game.Players.LocalPlayer.Character
  601. else
  602. local localPlayer = game.Players.LocalPlayer
  603. local humanoid = localPlayer.Character:FindFirstChildOfClass("Humanoid")
  604. if humanoid then
  605. humanoid:UnequipTools()
  606. end
  607. end
  608. end
  609.  
  610. end
  611.  
  612. if finalMsg == getgenv().prefix .. "wallet" then
  613. for i, v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  614. if v.name == "Wallet" then
  615. v.Parent = game.Players.LocalPlayer.Character
  616. else
  617. local localPlayer = game.Players.LocalPlayer
  618. local humanoid = localPlayer.Character:FindFirstChildOfClass("Humanoid")
  619. if humanoid then
  620. humanoid:UnequipTools()
  621. end
  622. end
  623. end
  624.  
  625. end
  626.  
  627. if finalMsg == getgenv().prefix .. "setspot " .. plr.Name:lower() then
  628. local args = {
  629. [1] = "Set spot successfully!",
  630. [2] = "All"
  631. }
  632.  
  633. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(
  634. unpack(args))
  635. local Players = game:GetService("Players")
  636. local function getPlayerByUserId(userId)
  637. for _, player in pairs(Players:GetPlayers()) do
  638. if player.UserId == userId then
  639. return player
  640. end
  641. end
  642. end
  643.  
  644. local plrrlrllr = getPlayerByUserId(getgenv().controller)
  645.  
  646. getgenv().poss = plrrlrllr.Character.HumanoidRootPart.Position
  647.  
  648. end
  649. if finalMsg == getgenv().prefix .. "setspot" then
  650. local args = {
  651. [1] = "Set spot successfully!",
  652. [2] = "All"
  653. }
  654.  
  655. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(
  656. unpack(args))
  657. local Players = game:GetService("Players")
  658. local function getPlayerByUserId(userId)
  659. for _, player in pairs(Players:GetPlayers()) do
  660. if player.UserId == userId then
  661. return player
  662. end
  663. end
  664. end
  665.  
  666. local plrrlrllr = getPlayerByUserId(getgenv().controller)
  667.  
  668. getgenv().poss = plrrlrllr.Character.HumanoidRootPart.Position
  669.  
  670. end
  671.  
  672. if finalMsg == getgenv().prefix .. "money? " .. plr.Name:lower() then
  673.  
  674. local args = {
  675. [1] = "I have " ..
  676. game:GetService("Players").LocalPlayer.PlayerGui.MainScreenGui.MoneyText.Text,
  677. [2] = "All"
  678. }
  679.  
  680. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(
  681. unpack(args))
  682.  
  683. end
  684.  
  685. if finalMsg == getgenv().prefix .. "money?" then
  686.  
  687. local args = {
  688. [1] = "I have " ..
  689. game:GetService("Players").LocalPlayer.PlayerGui.MainScreenGui.MoneyText.Text,
  690. [2] = "All"
  691. }
  692.  
  693. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(
  694. unpack(args))
  695.  
  696. end
  697. if finalMsg == getgenv().prefix .. "tospot " .. plr.Name:lower() then
  698.  
  699. game.Players.LocalPlayer.Character.Head.Anchored = false
  700. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(
  701. getgenv().poss)
  702. wait(0.5)
  703. game.Players.LocalPlayer.Character.Head.Anchored = true
  704.  
  705. end
  706. if finalMsg == getgenv().prefix .. "tospot" then
  707.  
  708. game.Players.LocalPlayer.Character.Head.Anchored = false
  709. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(
  710. getgenv().poss)
  711. wait(0.5)
  712. game.Players.LocalPlayer.Character.Head.Anchored = true
  713.  
  714. end
  715. if finalMsg == getgenv().prefix .. "unfly" then
  716. endFly()
  717. end
  718. if finalMsg == getgenv().prefix .. "unfly " .. plr.Name:lower() then
  719. endFly()
  720. end
  721. if finalMsg == getgenv().prefix .. "airlock " .. plr.Name:lower() then
  722. game.Players.LocalPlayer.Character.Head.Anchored = false
  723. local player = game.Players.LocalPlayer
  724. local character = player.Character
  725. local humanoid = character:FindFirstChild("Humanoid")
  726. local LPlr = game.Players.LocalPlayer
  727. local Character = LPlr.Character
  728. local HRP = Character:WaitForChild("HumanoidRootPart")
  729. humanoid.Jump = true
  730. wait(0.3)
  731. game.Players.LocalPlayer.Character.Head.Anchored = true
  732.  
  733. end
  734. if finalMsg == getgenv().prefix .. "airlock" then
  735. game.Players.LocalPlayer.Character.Head.Anchored = false
  736. local player = game.Players.LocalPlayer
  737. local character = player.Character
  738. local humanoid = character:FindFirstChild("Humanoid")
  739. local LPlr = game.Players.LocalPlayer
  740. local Character = LPlr.Character
  741. local HRP = Character:WaitForChild("HumanoidRootPart")
  742. humanoid.Jump = true
  743. wait(0.3)
  744. game.Players.LocalPlayer.Character.Head.Anchored = true
  745.  
  746. end
  747. if finalMsg == getgenv().prefix .. "kill" then
  748. humanoid.Health = 0
  749. end
  750.  
  751. if finalMsg == getgenv().prefix .. "crash" then
  752. loadstring(game:HttpGet(
  753. 'https://raw.githubusercontent.com/lerkermer/lua-projects/master/SuperCustomServerCrasher'))()
  754. wait(2)
  755. local function firefakesignal(Button)
  756. game:GetService("VirtualInputManager"):SendMouseButtonEvent(Button.AbsolutePosition.X +
  757. Button.AbsoluteSize.X /
  758. 2,
  759. Button.AbsolutePosition.Y + Button.AbsoluteSize.Y / 2 + 30, 0, true, yomama, 1)
  760. game:GetService("VirtualInputManager"):SendMouseButtonEvent(Button.AbsolutePosition.X +
  761. Button.AbsoluteSize.X /
  762. 2,
  763. Button.AbsolutePosition.Y + Button.AbsoluteSize.Y / 2 + 30, 0, false, yomama, 1)
  764. end
  765.  
  766. firefakesignal(game:GetService("CoreGui").SwagmodeCrasher["made_by_Lerk#7643"].CrashFrame
  767. .Abuse)
  768. end
  769.  
  770. if finalMsg == getgenv().prefix .. "kill " .. plr.Name:lower() then
  771. humanoid.Health = 0
  772. end
  773.  
  774. if finalMsg == getgenv().prefix .. "kick" then
  775. plr:Kick("You've been kicked by the Controller.")
  776. end
  777. if finalMsg == getgenv().prefix .. "kick " .. plr.Name:lower() then
  778. plr:Kick("You've been kicked by the Controller.")
  779. end
  780.  
  781. if finalMsg == getgenv().prefix .. "bringalts" then
  782. game.Players.LocalPlayer.Character.Head.Anchored = false
  783. PlayerHumanoid.RootPart.CFrame = LastTargetPosition + LastTargetPosition.LookVector * Length
  784. PlayerHumanoid.RootPart.CFrame =
  785. CFrame.new(PlayerHumanoid.RootPart.CFrame.Position, Vector3.new(
  786. LastTargetPosition.Position.X, PlayerHumanoid.RootPart.CFrame.Position.Y,
  787. LastTargetPosition.Position.Z))
  788. end
  789.  
  790. if finalMsg == getgenv().prefix .. "bring " .. plr.Name:lower() then
  791. game.Players.LocalPlayer.Character.Head.Anchored = false
  792. PlayerHumanoid.RootPart.CFrame = LastTargetPosition + LastTargetPosition.LookVector * Length
  793. PlayerHumanoid.RootPart.CFrame =
  794. CFrame.new(PlayerHumanoid.RootPart.CFrame.Position, Vector3.new(
  795. LastTargetPosition.Position.X, PlayerHumanoid.RootPart.CFrame.Position.Y,
  796. LastTargetPosition.Position.Z))
  797. end
  798.  
  799. if finalMsg == getgenv().prefix .. "freeze" then
  800.  
  801. game.Players.LocalPlayer.Character.Head.Anchored = true
  802.  
  803. end
  804.  
  805. if finalMsg == getgenv().prefix .. "freeze " .. plr.Name:lower() then
  806.  
  807. game.Players.LocalPlayer.Character.Head.Anchored = true
  808.  
  809. end
  810. if finalMsg == getgenv().prefix .. "unfreeze" then
  811.  
  812. game.Players.LocalPlayer.Character.Head.Anchored = false
  813.  
  814. end
  815. if finalMsg == getgenv().prefix .. "unfreeze " .. plr.Name:lower() then
  816.  
  817. game.Players.LocalPlayer.Character.Head.Anchored = false
  818.  
  819. end
  820. end
  821. end
  822.  
  823. end
  824. end
  825. Player.Chatted:Connect(Chatted)
  826. end
  827.  
  828. local GetPlayers = Players:GetPlayers()
  829. for i = 1, #GetPlayers do
  830. local Player = GetPlayers[i]
  831. coroutine.resume(coroutine.create(function()
  832. PlayerAdded(Player)
  833. end))
  834. end
  835. Players.PlayerAdded:Connect(PlayerAdded)
  836.  
  837. if game.Players.LocalPlayer.UserId == getgenv().controller then
  838. function RandomVariable(length)
  839. local res = ""
  840. for i = 1, length do
  841. res = res .. string.char(math.random(97, 122))
  842. end
  843. return res
  844. end
  845.  
  846. -- Gui to Lua
  847. -- Version: 3.2
  848.  
  849. -- Instances:
  850.  
  851. local HoxLZwzeCYfVwOkTlmXO = Instance.new("ScreenGui")
  852. local Main = Instance.new("Frame")
  853. local Sidebar = Instance.new("Frame")
  854. local UICorner = Instance.new("UICorner")
  855. local Home = Instance.new("ImageButton")
  856. local Settings = Instance.new("ImageButton")
  857. local Info = Instance.new("ImageButton")
  858. local Teleports = Instance.new("ImageButton")
  859. local Cmds = Instance.new("ImageButton")
  860. local Search = Instance.new("ImageButton")
  861. local UICorner_2 = Instance.new("UICorner")
  862. local Sites = Instance.new("Frame")
  863. local Home_2 = Instance.new("Frame")
  864. local Username = Instance.new("TextLabel")
  865. local Rank = Instance.new("TextLabel")
  866. local WhatsNew = Instance.new("TextLabel")
  867. local watext = Instance.new("TextLabel")
  868. local Teleports_2 = Instance.new("Frame")
  869. local TextButton = Instance.new("TextButton")
  870. local UICorner_3 = Instance.new("UICorner")
  871. local TextButton_2 = Instance.new("TextButton")
  872. local UICorner_4 = Instance.new("UICorner")
  873. local TextButton_3 = Instance.new("TextButton")
  874. local UICorner_5 = Instance.new("UICorner")
  875. local TextButton_4 = Instance.new("TextButton")
  876. local UICorner_6 = Instance.new("UICorner")
  877. local TextButton_5 = Instance.new("TextButton")
  878. local UICorner_7 = Instance.new("UICorner")
  879. local TextButton_6 = Instance.new("TextButton")
  880. local UICorner_8 = Instance.new("UICorner")
  881. local TextButton_7 = Instance.new("TextButton")
  882. local UICorner_9 = Instance.new("UICorner")
  883. local TextButton_8 = Instance.new("TextButton")
  884. local UICorner_10 = Instance.new("UICorner")
  885. local TextButton_9 = Instance.new("TextButton")
  886. local UICorner_11 = Instance.new("UICorner")
  887. local TextButton_10 = Instance.new("TextButton")
  888. local UICorner_12 = Instance.new("UICorner")
  889. local TextButton_11 = Instance.new("TextButton")
  890. local UICorner_13 = Instance.new("UICorner")
  891. local TextButton_12 = Instance.new("TextButton")
  892. local UICorner_14 = Instance.new("UICorner")
  893. local Title = Instance.new("TextLabel")
  894. local Cmds_2 = Instance.new("Frame")
  895. local Username_2 = Instance.new("TextLabel")
  896. local Rank_2 = Instance.new("TextLabel")
  897. local Rank_3 = Instance.new("TextLabel")
  898. local Rank_4 = Instance.new("TextLabel")
  899. local Rank_5 = Instance.new("TextLabel")
  900. local Rank_6 = Instance.new("TextLabel")
  901. local Rank_7 = Instance.new("TextLabel")
  902. local Rank_8 = Instance.new("TextLabel")
  903. local Rank_9 = Instance.new("TextLabel")
  904. local Rank_10 = Instance.new("TextLabel")
  905. local Rank_11 = Instance.new("TextLabel")
  906. local Rank_12 = Instance.new("TextLabel")
  907. local Rank_13 = Instance.new("TextLabel")
  908. local Rank_14 = Instance.new("TextLabel")
  909. local Rank_15 = Instance.new("TextLabel")
  910. local Rank_16 = Instance.new("TextLabel")
  911. local Info_2 = Instance.new("Frame")
  912. local Username_3 = Instance.new("TextLabel")
  913. local Rank_17 = Instance.new("TextLabel")
  914. local Settings_2 = Instance.new("Frame")
  915. local Username_4 = Instance.new("TextLabel")
  916. local Rank_18 = Instance.new("TextLabel")
  917. local Search_2 = Instance.new("Frame")
  918. local Title_2 = Instance.new("TextLabel")
  919. local TextBox = Instance.new("TextBox")
  920. local UICorner_15 = Instance.new("UICorner")
  921. local searchBTN = Instance.new("TextButton")
  922. local UICorner_16 = Instance.new("UICorner")
  923. local username = Instance.new("TextLabel")
  924. local cash = Instance.new("TextLabel")
  925. local UserIMG = Instance.new("ImageLabel")
  926. local UICorner_17 = Instance.new("UICorner")
  927. local wanted = Instance.new("TextLabel")
  928. local Title_3 = Instance.new("TextLabel")
  929.  
  930. -- Properties:
  931.  
  932. HoxLZwzeCYfVwOkTlmXO.Name = RandomVariable(20)
  933. HoxLZwzeCYfVwOkTlmXO.Parent = game.CoreGui
  934. HoxLZwzeCYfVwOkTlmXO.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  935.  
  936. Main.Name = "Main"
  937. Main.Parent = HoxLZwzeCYfVwOkTlmXO
  938. Main.BackgroundColor3 = Color3.fromRGB(31, 31, 31)
  939. Main.BorderSizePixel = 0
  940. Main.Position = UDim2.new(0.168555707, 0, 0.392983228, 0)
  941. Main.Size = UDim2.new(0, 606, 0, 338)
  942.  
  943. Sidebar.Name = "Sidebar"
  944. Sidebar.Parent = Main
  945. Sidebar.BackgroundColor3 = Color3.fromRGB(45, 45, 45)
  946. Sidebar.BorderSizePixel = 0
  947. Sidebar.Size = UDim2.new(0, 65, 0, 338)
  948.  
  949. UICorner.CornerRadius = UDim.new(0, 4)
  950. UICorner.Parent = Sidebar
  951.  
  952. Home.Name = "Home"
  953. Home.Parent = Sidebar
  954. Home.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  955. Home.BackgroundTransparency = 1.000
  956. Home.Position = UDim2.new(0.230769232, 0, 0.041420117, 0)
  957. Home.Size = UDim2.new(0, 35, 0, 35)
  958. Home.Image = "rbxassetid://9264541932"
  959.  
  960. Settings.Name = "Settings"
  961. Settings.Parent = Sidebar
  962. Settings.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  963. Settings.BackgroundTransparency = 1.000
  964. Settings.Position = UDim2.new(0.230769232, 0, 0.855029583, 0)
  965. Settings.Size = UDim2.new(0, 35, 0, 35)
  966. Settings.Image = "rbxassetid://9264554833"
  967.  
  968. Info.Name = "Info"
  969. Info.Parent = Sidebar
  970. Info.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  971. Info.BackgroundTransparency = 1.000
  972. Info.Position = UDim2.new(0.230769232, 0, 0.70710057, 0)
  973. Info.Size = UDim2.new(0, 35, 0, 35)
  974. Info.Image = "rbxassetid://9264635930"
  975.  
  976. Teleports.Name = "Teleports"
  977. Teleports.Parent = Sidebar
  978. Teleports.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  979. Teleports.BackgroundTransparency = 1.000
  980. Teleports.Position = UDim2.new(0.230769232, 0, 0.195266277, 0)
  981. Teleports.Size = UDim2.new(0, 35, 0, 35)
  982. Teleports.Image = "rbxassetid://9264768136"
  983.  
  984. Cmds.Name = "Cmds"
  985. Cmds.Parent = Sidebar
  986. Cmds.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  987. Cmds.BackgroundTransparency = 1.000
  988. Cmds.Position = UDim2.new(0.230769232, 0, 0.352071017, 0)
  989. Cmds.Size = UDim2.new(0, 35, 0, 35)
  990. Cmds.Image = "rbxassetid://9264822672"
  991.  
  992. Search.Name = "Search"
  993. Search.Parent = Sidebar
  994. Search.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  995. Search.BackgroundTransparency = 1.000
  996. Search.Position = UDim2.new(0.230769232, 0, 0.497041434, 0)
  997. Search.Size = UDim2.new(0, 35, 0, 35)
  998. Search.Image = "rbxassetid://9288309850"
  999.  
  1000. UICorner_2.CornerRadius = UDim.new(0, 4)
  1001. UICorner_2.Parent = Main
  1002.  
  1003. Sites.Name = "Sites"
  1004. Sites.Parent = Main
  1005. Sites.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1006. Sites.BackgroundTransparency = 1.000
  1007. Sites.Position = UDim2.new(0.107260726, 0, 0, 0)
  1008. Sites.Size = UDim2.new(0, 541, 0, 338)
  1009.  
  1010. Home_2.Name = "Home"
  1011. Home_2.Parent = Sites
  1012. Home_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1013. Home_2.BackgroundTransparency = 1.000
  1014. Home_2.Size = UDim2.new(0, 541, 0, 338)
  1015.  
  1016. Username.Name = "Username"
  1017. Username.Parent = Home_2
  1018. Username.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1019. Username.BackgroundTransparency = 1.000
  1020. Username.BorderSizePixel = 0
  1021. Username.Position = UDim2.new(0.0177452099, 0, 0.15242745, 0)
  1022. Username.Size = UDim2.new(0, 335, 0, 21)
  1023. Username.Font = Enum.Font.Code
  1024. Username.Text = "Username: USER_HOLDER"
  1025. Username.TextColor3 = Color3.fromRGB(220, 220, 220)
  1026. Username.TextSize = 18.000
  1027. Username.TextWrapped = true
  1028. Username.TextXAlignment = Enum.TextXAlignment.Left
  1029.  
  1030. Rank.Name = "Rank"
  1031. Rank.Parent = Home_2
  1032. Rank.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1033. Rank.BackgroundTransparency = 1.000
  1034. Rank.BorderSizePixel = 0
  1035. Rank.Position = UDim2.new(0.0177452099, 0, 0.214557633, 0)
  1036. Rank.Size = UDim2.new(0, 335, 0, 21)
  1037. Rank.Font = Enum.Font.Code
  1038. Rank.Text = " "
  1039. Rank.TextColor3 = Color3.fromRGB(220, 220, 220)
  1040. Rank.TextSize = 18.000
  1041. Rank.TextWrapped = true
  1042. Rank.TextXAlignment = Enum.TextXAlignment.Left
  1043.  
  1044. WhatsNew.Name = "Whats New?"
  1045. WhatsNew.Parent = Home_2
  1046. WhatsNew.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1047. WhatsNew.BackgroundTransparency = 1.000
  1048. WhatsNew.BorderSizePixel = 0
  1049. WhatsNew.Position = UDim2.new(0.0177452099, 0, 0.374320924, 0)
  1050. WhatsNew.Size = UDim2.new(0, 335, 0, 28)
  1051. WhatsNew.Font = Enum.Font.Code
  1052. WhatsNew.Text = "What's new?"
  1053. WhatsNew.TextColor3 = Color3.fromRGB(220, 220, 220)
  1054. WhatsNew.TextSize = 26.000
  1055. WhatsNew.TextWrapped = true
  1056. WhatsNew.TextXAlignment = Enum.TextXAlignment.Left
  1057.  
  1058. watext.Name = "watext"
  1059. watext.Parent = Home_2
  1060. watext.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1061. watext.BackgroundTransparency = 1.000
  1062. watext.BorderSizePixel = 0
  1063. watext.Position = UDim2.new(0.0177452099, 0, 0.457161278, 0)
  1064. watext.Size = UDim2.new(0, 515, 0, 169)
  1065. watext.Font = Enum.Font.Code
  1066. watext.Text = "Loading..."
  1067. watext.TextColor3 = Color3.fromRGB(220, 220, 220)
  1068. watext.TextSize = 18.000
  1069. watext.TextWrapped = true
  1070. watext.TextXAlignment = Enum.TextXAlignment.Left
  1071. watext.TextYAlignment = Enum.TextYAlignment.Top
  1072.  
  1073. Teleports_2.Name = "Teleports"
  1074. Teleports_2.Parent = Sites
  1075. Teleports_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1076. Teleports_2.BackgroundTransparency = 1.000
  1077. Teleports_2.Size = UDim2.new(0, 541, 0, 338)
  1078. Teleports_2.Visible = false
  1079.  
  1080. TextButton.Parent = Teleports_2
  1081. TextButton.BackgroundColor3 = Color3.fromRGB(43, 43, 43)
  1082. TextButton.Position = UDim2.new(0.0166358575, 0, 0.221893474, 0)
  1083. TextButton.Size = UDim2.new(0, 132, 0, 45)
  1084. TextButton.Font = Enum.Font.Code
  1085. TextButton.Text = "Bank"
  1086. TextButton.TextColor3 = Color3.fromRGB(220, 220, 220)
  1087. TextButton.TextSize = 14.000
  1088.  
  1089. UICorner_3.Parent = TextButton
  1090.  
  1091. TextButton_2.Parent = Teleports_2
  1092. TextButton_2.BackgroundColor3 = Color3.fromRGB(43, 43, 43)
  1093. TextButton_2.Position = UDim2.new(0.297597051, 0, 0.221893474, 0)
  1094. TextButton_2.Size = UDim2.new(0, 132, 0, 45)
  1095. TextButton_2.Font = Enum.Font.Code
  1096. TextButton_2.Text = "Playground"
  1097. TextButton_2.TextColor3 = Color3.fromRGB(220, 220, 220)
  1098. TextButton_2.TextSize = 14.000
  1099.  
  1100. UICorner_4.Parent = TextButton_2
  1101.  
  1102. TextButton_3.Parent = Teleports_2
  1103. TextButton_3.BackgroundColor3 = Color3.fromRGB(43, 43, 43)
  1104. TextButton_3.Position = UDim2.new(0.584103465, 0, 0.221893474, 0)
  1105. TextButton_3.Size = UDim2.new(0, 132, 0, 45)
  1106. TextButton_3.Font = Enum.Font.Code
  1107. TextButton_3.Text = "Train"
  1108. TextButton_3.TextColor3 = Color3.fromRGB(220, 220, 220)
  1109. TextButton_3.TextSize = 14.000
  1110.  
  1111. UICorner_5.Parent = TextButton_3
  1112.  
  1113. TextButton_4.Parent = Teleports_2
  1114. TextButton_4.BackgroundColor3 = Color3.fromRGB(43, 43, 43)
  1115. TextButton_4.Position = UDim2.new(0.584103465, 0, 0.396449685, 0)
  1116. TextButton_4.Size = UDim2.new(0, 132, 0, 45)
  1117. TextButton_4.Font = Enum.Font.Code
  1118. TextButton_4.Text = "Basket"
  1119. TextButton_4.TextColor3 = Color3.fromRGB(220, 220, 220)
  1120. TextButton_4.TextSize = 14.000
  1121.  
  1122. UICorner_6.Parent = TextButton_4
  1123.  
  1124. TextButton_5.Parent = Teleports_2
  1125. TextButton_5.BackgroundColor3 = Color3.fromRGB(43, 43, 43)
  1126. TextButton_5.Position = UDim2.new(0.297597051, 0, 0.396449685, 0)
  1127. TextButton_5.Size = UDim2.new(0, 132, 0, 45)
  1128. TextButton_5.Font = Enum.Font.Code
  1129. TextButton_5.Text = "School"
  1130. TextButton_5.TextColor3 = Color3.fromRGB(220, 220, 220)
  1131. TextButton_5.TextSize = 14.000
  1132.  
  1133. UICorner_7.Parent = TextButton_5
  1134.  
  1135. TextButton_6.Parent = Teleports_2
  1136. TextButton_6.BackgroundColor3 = Color3.fromRGB(43, 43, 43)
  1137. TextButton_6.Position = UDim2.new(0.0166358575, 0, 0.396449685, 0)
  1138. TextButton_6.Size = UDim2.new(0, 132, 0, 45)
  1139. TextButton_6.Font = Enum.Font.Code
  1140. TextButton_6.Text = "Club"
  1141. TextButton_6.TextColor3 = Color3.fromRGB(220, 220, 220)
  1142. TextButton_6.TextSize = 14.000
  1143.  
  1144. UICorner_8.Parent = TextButton_6
  1145.  
  1146. TextButton_7.Parent = Teleports_2
  1147. TextButton_7.BackgroundColor3 = Color3.fromRGB(43, 43, 43)
  1148. TextButton_7.Position = UDim2.new(0.584103465, 0, 0.573964477, 0)
  1149. TextButton_7.Size = UDim2.new(0, 132, 0, 45)
  1150. TextButton_7.Font = Enum.Font.Code
  1151. TextButton_7.Text = "Safezone"
  1152. TextButton_7.TextColor3 = Color3.fromRGB(220, 220, 220)
  1153. TextButton_7.TextSize = 14.000
  1154.  
  1155. UICorner_9.Parent = TextButton_7
  1156.  
  1157. TextButton_8.Parent = Teleports_2
  1158. TextButton_8.BackgroundColor3 = Color3.fromRGB(43, 43, 43)
  1159. TextButton_8.Position = UDim2.new(0.297597051, 0, 0.573964477, 0)
  1160. TextButton_8.Size = UDim2.new(0, 132, 0, 45)
  1161. TextButton_8.Font = Enum.Font.Code
  1162. TextButton_8.Text = "Ufo"
  1163. TextButton_8.TextColor3 = Color3.fromRGB(220, 220, 220)
  1164. TextButton_8.TextSize = 14.000
  1165.  
  1166. UICorner_10.Parent = TextButton_8
  1167.  
  1168. TextButton_9.Parent = Teleports_2
  1169. TextButton_9.BackgroundColor3 = Color3.fromRGB(43, 43, 43)
  1170. TextButton_9.Position = UDim2.new(0.0166358575, 0, 0.573964477, 0)
  1171. TextButton_9.Size = UDim2.new(0, 132, 0, 45)
  1172. TextButton_9.Font = Enum.Font.Code
  1173. TextButton_9.Text = "Police"
  1174. TextButton_9.TextColor3 = Color3.fromRGB(220, 220, 220)
  1175. TextButton_9.TextSize = 14.000
  1176.  
  1177. UICorner_11.Parent = TextButton_9
  1178.  
  1179. TextButton_10.Parent = Teleports_2
  1180. TextButton_10.BackgroundColor3 = Color3.fromRGB(43, 43, 43)
  1181. TextButton_10.Position = UDim2.new(0.584103465, 0, 0.751479208, 0)
  1182. TextButton_10.Size = UDim2.new(0, 132, 0, 45)
  1183. TextButton_10.Font = Enum.Font.Code
  1184. TextButton_10.Text = "Shop2"
  1185. TextButton_10.TextColor3 = Color3.fromRGB(220, 220, 220)
  1186. TextButton_10.TextSize = 14.000
  1187.  
  1188. UICorner_12.Parent = TextButton_10
  1189.  
  1190. TextButton_11.Parent = Teleports_2
  1191. TextButton_11.BackgroundColor3 = Color3.fromRGB(43, 43, 43)
  1192. TextButton_11.Position = UDim2.new(0.297597051, 0, 0.751479208, 0)
  1193. TextButton_11.Size = UDim2.new(0, 132, 0, 45)
  1194. TextButton_11.Font = Enum.Font.Code
  1195. TextButton_11.Text = "Shop1"
  1196. TextButton_11.TextColor3 = Color3.fromRGB(220, 220, 220)
  1197. TextButton_11.TextSize = 14.000
  1198.  
  1199. UICorner_13.Parent = TextButton_11
  1200.  
  1201. TextButton_12.Parent = Teleports_2
  1202. TextButton_12.BackgroundColor3 = Color3.fromRGB(43, 43, 43)
  1203. TextButton_12.Position = UDim2.new(0.0166358575, 0, 0.751479208, 0)
  1204. TextButton_12.Size = UDim2.new(0, 132, 0, 45)
  1205. TextButton_12.Font = Enum.Font.Code
  1206. TextButton_12.Text = "Admin"
  1207. TextButton_12.TextColor3 = Color3.fromRGB(220, 220, 220)
  1208. TextButton_12.TextSize = 14.000
  1209.  
  1210. UICorner_14.Parent = TextButton_12
  1211.  
  1212. Title.Name = "Title"
  1213. Title.Parent = Teleports_2
  1214. Title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1215. Title.BackgroundTransparency = 1.000
  1216. Title.BorderSizePixel = 0
  1217. Title.Position = UDim2.new(0.0183918625, 0, 0.109467454, 0)
  1218. Title.Size = UDim2.new(0, 153, 0, 21)
  1219. Title.Font = Enum.Font.Code
  1220. Title.Text = "Teleports"
  1221. Title.TextColor3 = Color3.fromRGB(220, 220, 220)
  1222. Title.TextSize = 20.000
  1223. Title.TextWrapped = true
  1224. Title.TextXAlignment = Enum.TextXAlignment.Left
  1225.  
  1226. Cmds_2.Name = "Cmds"
  1227. Cmds_2.Parent = Sites
  1228. Cmds_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1229. Cmds_2.BackgroundTransparency = 1.000
  1230. Cmds_2.Size = UDim2.new(0, 541, 0, 338)
  1231. Cmds_2.Visible = false
  1232.  
  1233. Username_2.Name = "Username"
  1234. Username_2.Parent = Cmds_2
  1235. Username_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1236. Username_2.BackgroundTransparency = 1.000
  1237. Username_2.BorderSizePixel = 0
  1238. Username_2.Position = UDim2.new(0.0177452099, 0, 0.15242745, 0)
  1239. Username_2.Size = UDim2.new(0, 335, 0, 21)
  1240. Username_2.Font = Enum.Font.Code
  1241. Username_2.Text = "Commands"
  1242. Username_2.TextColor3 = Color3.fromRGB(220, 220, 220)
  1243. Username_2.TextSize = 18.000
  1244. Username_2.TextWrapped = true
  1245. Username_2.TextXAlignment = Enum.TextXAlignment.Left
  1246.  
  1247. Rank_2.Name = "Rank"
  1248. Rank_2.Parent = Cmds_2
  1249. Rank_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1250. Rank_2.BackgroundTransparency = 1.000
  1251. Rank_2.BorderSizePixel = 0
  1252. Rank_2.Position = UDim2.new(0.0177452099, 0, 0.241184741, 0)
  1253. Rank_2.Size = UDim2.new(0, 390, 0, 21)
  1254. Rank_2.Font = Enum.Font.Code
  1255. Rank_2.Text = "setup {bank, admin}"
  1256. Rank_2.TextColor3 = Color3.fromRGB(220, 220, 220)
  1257. Rank_2.TextSize = 18.000
  1258. Rank_2.TextWrapped = true
  1259. Rank_2.TextXAlignment = Enum.TextXAlignment.Left
  1260.  
  1261. Rank_3.Name = "Rank"
  1262. Rank_3.Parent = Cmds_2
  1263. Rank_3.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1264. Rank_3.BackgroundTransparency = 1.000
  1265. Rank_3.BorderSizePixel = 0
  1266. Rank_3.Position = UDim2.new(0.0177452099, 0, 0.303314924, 0)
  1267. Rank_3.Size = UDim2.new(0, 390, 0, 21)
  1268. Rank_3.Font = Enum.Font.Code
  1269. Rank_3.Text = "airlock {alt name, none=all}"
  1270. Rank_3.TextColor3 = Color3.fromRGB(220, 220, 220)
  1271. Rank_3.TextSize = 18.000
  1272. Rank_3.TextWrapped = true
  1273. Rank_3.TextXAlignment = Enum.TextXAlignment.Left
  1274.  
  1275. Rank_4.Name = "Rank"
  1276. Rank_4.Parent = Cmds_2
  1277. Rank_4.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1278. Rank_4.BackgroundTransparency = 1.000
  1279. Rank_4.BorderSizePixel = 0
  1280. Rank_4.Position = UDim2.new(0.0177452099, 0, 0.365445107, 0)
  1281. Rank_4.Size = UDim2.new(0, 390, 0, 21)
  1282. Rank_4.Font = Enum.Font.Code
  1283. Rank_4.Text = "money? {alt name, none=all}"
  1284. Rank_4.TextColor3 = Color3.fromRGB(220, 220, 220)
  1285. Rank_4.TextSize = 18.000
  1286. Rank_4.TextWrapped = true
  1287. Rank_4.TextXAlignment = Enum.TextXAlignment.Left
  1288.  
  1289. Rank_5.Name = "Rank"
  1290. Rank_5.Parent = Cmds_2
  1291. Rank_5.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1292. Rank_5.BackgroundTransparency = 1.000
  1293. Rank_5.BorderSizePixel = 0
  1294. Rank_5.Position = UDim2.new(0.0177452099, 0, 0.42757529, 0)
  1295. Rank_5.Size = UDim2.new(0, 390, 0, 21)
  1296. Rank_5.Font = Enum.Font.Code
  1297. Rank_5.Text = "drop {alt name, none=all}"
  1298. Rank_5.TextColor3 = Color3.fromRGB(220, 220, 220)
  1299. Rank_5.TextSize = 18.000
  1300. Rank_5.TextWrapped = true
  1301. Rank_5.TextXAlignment = Enum.TextXAlignment.Left
  1302.  
  1303. Rank_6.Name = "Rank"
  1304. Rank_6.Parent = Cmds_2
  1305. Rank_6.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1306. Rank_6.BackgroundTransparency = 1.000
  1307. Rank_6.BorderSizePixel = 0
  1308. Rank_6.Position = UDim2.new(0.0177452099, 0, 0.489705473, 0)
  1309. Rank_6.Size = UDim2.new(0, 390, 0, 21)
  1310. Rank_6.Font = Enum.Font.Code
  1311. Rank_6.Text = "setspot {alt name, none=all}"
  1312. Rank_6.TextColor3 = Color3.fromRGB(220, 220, 220)
  1313. Rank_6.TextSize = 18.000
  1314. Rank_6.TextWrapped = true
  1315. Rank_6.TextXAlignment = Enum.TextXAlignment.Left
  1316.  
  1317. Rank_7.Name = "Rank"
  1318. Rank_7.Parent = Cmds_2
  1319. Rank_7.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1320. Rank_7.BackgroundTransparency = 1.000
  1321. Rank_7.BorderSizePixel = 0
  1322. Rank_7.Position = UDim2.new(0.0177452099, 0, 0.551835656, 0)
  1323. Rank_7.Size = UDim2.new(0, 390, 0, 21)
  1324. Rank_7.Font = Enum.Font.Code
  1325. Rank_7.Text = "tospot {alt name, none=all}"
  1326. Rank_7.TextColor3 = Color3.fromRGB(220, 220, 220)
  1327. Rank_7.TextSize = 18.000
  1328. Rank_7.TextWrapped = true
  1329. Rank_7.TextXAlignment = Enum.TextXAlignment.Left
  1330.  
  1331. Rank_8.Name = "Rank"
  1332. Rank_8.Parent = Cmds_2
  1333. Rank_8.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1334. Rank_8.BackgroundTransparency = 1.000
  1335. Rank_8.BorderSizePixel = 0
  1336. Rank_8.Position = UDim2.new(0.0177452099, 0, 0.613965809, 0)
  1337. Rank_8.Size = UDim2.new(0, 390, 0, 21)
  1338. Rank_8.Font = Enum.Font.Code
  1339. Rank_8.Text = "bringalts"
  1340. Rank_8.TextColor3 = Color3.fromRGB(220, 220, 220)
  1341. Rank_8.TextSize = 18.000
  1342. Rank_8.TextWrapped = true
  1343. Rank_8.TextXAlignment = Enum.TextXAlignment.Left
  1344.  
  1345. Rank_9.Name = "Rank"
  1346. Rank_9.Parent = Cmds_2
  1347. Rank_9.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1348. Rank_9.BackgroundTransparency = 1.000
  1349. Rank_9.BorderSizePixel = 0
  1350. Rank_9.Position = UDim2.new(0.0177452099, 0, 0.738226175, 0)
  1351. Rank_9.Size = UDim2.new(0, 390, 0, 21)
  1352. Rank_9.Font = Enum.Font.Code
  1353. Rank_9.Text = "kill {alt name, none=all}"
  1354. Rank_9.TextColor3 = Color3.fromRGB(220, 220, 220)
  1355. Rank_9.TextSize = 18.000
  1356. Rank_9.TextWrapped = true
  1357. Rank_9.TextXAlignment = Enum.TextXAlignment.Left
  1358.  
  1359. Rank_10.Name = "Rank"
  1360. Rank_10.Parent = Cmds_2
  1361. Rank_10.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1362. Rank_10.BackgroundTransparency = 1.000
  1363. Rank_10.BorderSizePixel = 0
  1364. Rank_10.Position = UDim2.new(0.0177452099, 0, 0.676096022, 0)
  1365. Rank_10.Size = UDim2.new(0, 390, 0, 21)
  1366. Rank_10.Font = Enum.Font.Code
  1367. Rank_10.Text = "bring {alt name}"
  1368. Rank_10.TextColor3 = Color3.fromRGB(220, 220, 220)
  1369. Rank_10.TextSize = 18.000
  1370. Rank_10.TextWrapped = true
  1371. Rank_10.TextXAlignment = Enum.TextXAlignment.Left
  1372.  
  1373. Rank_11.Name = "Rank"
  1374. Rank_11.Parent = Cmds_2
  1375. Rank_11.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1376. Rank_11.BackgroundTransparency = 1.000
  1377. Rank_11.BorderSizePixel = 0
  1378. Rank_11.Position = UDim2.new(0.0177452099, 0, 0.800356328, 0)
  1379. Rank_11.Size = UDim2.new(0, 390, 0, 21)
  1380. Rank_11.Font = Enum.Font.Code
  1381. Rank_11.Text = "kick {alt name, none=all}"
  1382. Rank_11.TextColor3 = Color3.fromRGB(220, 220, 220)
  1383. Rank_11.TextSize = 18.000
  1384. Rank_11.TextWrapped = true
  1385. Rank_11.TextXAlignment = Enum.TextXAlignment.Left
  1386.  
  1387. Rank_12.Name = "Rank"
  1388. Rank_12.Parent = Cmds_2
  1389. Rank_12.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1390. Rank_12.BackgroundTransparency = 1.000
  1391. Rank_12.BorderSizePixel = 0
  1392. Rank_12.Position = UDim2.new(0.0177452099, 0, 0.859527946, 0)
  1393. Rank_12.Size = UDim2.new(0, 390, 0, 21)
  1394. Rank_12.Font = Enum.Font.Code
  1395. Rank_12.Text = "freeze {alt name, none=all}"
  1396. Rank_12.TextColor3 = Color3.fromRGB(220, 220, 220)
  1397. Rank_12.TextSize = 18.000
  1398. Rank_12.TextWrapped = true
  1399. Rank_12.TextXAlignment = Enum.TextXAlignment.Left
  1400.  
  1401. Rank_13.Name = "Rank"
  1402. Rank_13.Parent = Cmds_2
  1403. Rank_13.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1404. Rank_13.BackgroundTransparency = 1.000
  1405. Rank_13.BorderSizePixel = 0
  1406. Rank_13.Position = UDim2.new(0.0177452099, 0, 0.918699563, 0)
  1407. Rank_13.Size = UDim2.new(0, 390, 0, 21)
  1408. Rank_13.Font = Enum.Font.Code
  1409. Rank_13.Text = "unfreeze {alt name, none=all}"
  1410. Rank_13.TextColor3 = Color3.fromRGB(220, 220, 220)
  1411. Rank_13.TextSize = 18.000
  1412. Rank_13.TextWrapped = true
  1413. Rank_13.TextXAlignment = Enum.TextXAlignment.Left
  1414.  
  1415. Rank_14.Name = "Rank"
  1416. Rank_14.Parent = Cmds_2
  1417. Rank_14.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1418. Rank_14.BackgroundTransparency = 1.000
  1419. Rank_14.BorderSizePixel = 0
  1420. Rank_14.Position = UDim2.new(0.511275709, 0, 0.241184801, 0)
  1421. Rank_14.Size = UDim2.new(0, 390, 0, 21)
  1422. Rank_14.Font = Enum.Font.Code
  1423. Rank_14.Text = "vibe {alt name, none=all}"
  1424. Rank_14.TextColor3 = Color3.fromRGB(220, 220, 220)
  1425. Rank_14.TextSize = 18.000
  1426. Rank_14.TextWrapped = true
  1427. Rank_14.TextXAlignment = Enum.TextXAlignment.Left
  1428.  
  1429. Rank_15.Name = "Rank"
  1430. Rank_15.Parent = Cmds_2
  1431. Rank_15.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1432. Rank_15.BackgroundTransparency = 1.000
  1433. Rank_15.BorderSizePixel = 0
  1434. Rank_15.Position = UDim2.new(0.511275709, 0, 0.303314984, 0)
  1435. Rank_15.Size = UDim2.new(0, 390, 0, 21)
  1436. Rank_15.Font = Enum.Font.Code
  1437. Rank_15.Text = "advert {alt name, none=all}"
  1438. Rank_15.TextColor3 = Color3.fromRGB(220, 220, 220)
  1439. Rank_15.TextSize = 18.000
  1440. Rank_15.TextWrapped = true
  1441. Rank_15.TextXAlignment = Enum.TextXAlignment.Left
  1442.  
  1443. Rank_16.Name = "Rank"
  1444. Rank_16.Parent = Cmds_2
  1445. Rank_16.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1446. Rank_16.BackgroundTransparency = 1.000
  1447. Rank_16.BorderSizePixel = 0
  1448. Rank_16.Position = UDim2.new(0.511275709, 0, 0.365445167, 0)
  1449. Rank_16.Size = UDim2.new(0, 390, 0, 21)
  1450. Rank_16.Font = Enum.Font.Code
  1451. Rank_16.Text = "crash (REQUIRES A DECENT PC)"
  1452. Rank_16.TextColor3 = Color3.fromRGB(220, 220, 220)
  1453. Rank_16.TextSize = 18.000
  1454. Rank_16.TextWrapped = true
  1455. Rank_16.TextXAlignment = Enum.TextXAlignment.Left
  1456.  
  1457. Info_2.Name = "Info"
  1458. Info_2.Parent = Sites
  1459. Info_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1460. Info_2.BackgroundTransparency = 1.000
  1461. Info_2.Size = UDim2.new(0, 541, 0, 338)
  1462. Info_2.Visible = false
  1463.  
  1464. Username_3.Name = "Username"
  1465. Username_3.Parent = Info_2
  1466. Username_3.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1467. Username_3.BackgroundTransparency = 1.000
  1468. Username_3.BorderSizePixel = 0
  1469. Username_3.Position = UDim2.new(0.0177452099, 0, 0.15242745, 0)
  1470. Username_3.Size = UDim2.new(0, 335, 0, 21)
  1471. Username_3.Font = Enum.Font.Code
  1472. Username_3.Text = "Info"
  1473. Username_3.TextColor3 = Color3.fromRGB(220, 220, 220)
  1474. Username_3.TextSize = 18.000
  1475. Username_3.TextWrapped = true
  1476. Username_3.TextXAlignment = Enum.TextXAlignment.Left
  1477.  
  1478. Rank_17.Name = "Rank"
  1479. Rank_17.Parent = Info_2
  1480. Rank_17.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1481. Rank_17.BackgroundTransparency = 1.000
  1482. Rank_17.BorderSizePixel = 0
  1483. Rank_17.Position = UDim2.new(0.0177452099, 0, 0.288522124, 0)
  1484. Rank_17.Size = UDim2.new(0, 513, 0, 226)
  1485. Rank_17.Font = Enum.Font.Code
  1486. Rank_17.Text =
  1487. "This script has been made by the incognito and lil_Squeasy."
  1488. Rank_17.TextColor3 = Color3.fromRGB(220, 220, 220)
  1489. Rank_17.TextSize = 18.000
  1490. Rank_17.TextWrapped = true
  1491. Rank_17.TextXAlignment = Enum.TextXAlignment.Left
  1492. Rank_17.TextYAlignment = Enum.TextYAlignment.Top
  1493.  
  1494. Settings_2.Name = "Settings"
  1495. Settings_2.Parent = Sites
  1496. Settings_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1497. Settings_2.BackgroundTransparency = 1.000
  1498. Settings_2.Size = UDim2.new(0, 541, 0, 338)
  1499. Settings_2.Visible = false
  1500.  
  1501. Username_4.Name = "Username"
  1502. Username_4.Parent = Settings_2
  1503. Username_4.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1504. Username_4.BackgroundTransparency = 1.000
  1505. Username_4.BorderSizePixel = 0
  1506. Username_4.Position = UDim2.new(0.0177452099, 0, 0.15242745, 0)
  1507. Username_4.Size = UDim2.new(0, 335, 0, 21)
  1508. Username_4.Font = Enum.Font.Code
  1509. Username_4.Text = "Settings"
  1510. Username_4.TextColor3 = Color3.fromRGB(220, 220, 220)
  1511. Username_4.TextSize = 18.000
  1512. Username_4.TextWrapped = true
  1513. Username_4.TextXAlignment = Enum.TextXAlignment.Left
  1514.  
  1515. Rank_18.Name = "Rank"
  1516. Rank_18.Parent = Settings_2
  1517. Rank_18.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1518. Rank_18.BackgroundTransparency = 1.000
  1519. Rank_18.BorderSizePixel = 0
  1520. Rank_18.Position = UDim2.new(0.133086875, 0, 0.362486631, 0)
  1521. Rank_18.Size = UDim2.new(0, 391, 0, 92)
  1522. Rank_18.Font = Enum.Font.Code
  1523. Rank_18.Text = "THIS FEATURE IS COMING SOON!"
  1524. Rank_18.TextColor3 = Color3.fromRGB(220, 220, 220)
  1525. Rank_18.TextSize = 18.000
  1526. Rank_18.TextWrapped = true
  1527.  
  1528. Search_2.Name = "Search"
  1529. Search_2.Parent = Sites
  1530. Search_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1531. Search_2.BackgroundTransparency = 1.000
  1532. Search_2.Size = UDim2.new(0, 541, 0, 338)
  1533. Search_2.Visible = false
  1534.  
  1535. Title_2.Name = "Title"
  1536. Title_2.Parent = Search_2
  1537. Title_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1538. Title_2.BackgroundTransparency = 1.000
  1539. Title_2.BorderSizePixel = 0
  1540. Title_2.Position = UDim2.new(0.0177452099, 0, 0.15242745, 0)
  1541. Title_2.Size = UDim2.new(0, 335, 0, 21)
  1542. Title_2.Font = Enum.Font.Code
  1543. Title_2.Text = "Search accounts"
  1544. Title_2.TextColor3 = Color3.fromRGB(220, 220, 220)
  1545. Title_2.TextSize = 18.000
  1546. Title_2.TextWrapped = true
  1547. Title_2.TextXAlignment = Enum.TextXAlignment.Left
  1548.  
  1549. TextBox.Parent = Search_2
  1550. TextBox.BackgroundColor3 = Color3.fromRGB(45, 45, 45)
  1551. TextBox.Position = UDim2.new(0.0166358594, 0, 0.724852026, 0)
  1552. TextBox.Size = UDim2.new(0, 268, 0, 37)
  1553. TextBox.ZIndex = 5
  1554. TextBox.Font = Enum.Font.Code
  1555. TextBox.LineHeight = 1.100
  1556. TextBox.PlaceholderText = "Input Username (cAsE sEnsItive)"
  1557. TextBox.Text = ""
  1558. TextBox.TextColor3 = Color3.fromRGB(255, 255, 255)
  1559. TextBox.TextSize = 14.000
  1560.  
  1561. UICorner_15.Parent = TextBox
  1562.  
  1563. searchBTN.Name = "searchBTN"
  1564. searchBTN.Parent = Search_2
  1565. searchBTN.BackgroundColor3 = Color3.fromRGB(43, 43, 43)
  1566. searchBTN.Position = UDim2.new(0.0166358594, 0, 0.855029583, 0)
  1567. searchBTN.Size = UDim2.new(0, 106, 0, 36)
  1568. searchBTN.Font = Enum.Font.Code
  1569. searchBTN.Text = "Search"
  1570. searchBTN.TextColor3 = Color3.fromRGB(230, 230, 230)
  1571. searchBTN.TextSize = 14.000
  1572.  
  1573. UICorner_16.Parent = searchBTN
  1574.  
  1575. username.Name = "username"
  1576. username.Parent = Search_2
  1577. username.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1578. username.BackgroundTransparency = 1.000
  1579. username.BorderSizePixel = 0
  1580. username.Position = UDim2.new(0.0177452099, 0, 0.264853477, 0)
  1581. username.Size = UDim2.new(0, 335, 0, 21)
  1582. username.Font = Enum.Font.Code
  1583. username.Text = "Username: HOLDER"
  1584. username.TextColor3 = Color3.fromRGB(220, 220, 220)
  1585. username.TextSize = 18.000
  1586. username.TextWrapped = true
  1587. username.TextXAlignment = Enum.TextXAlignment.Left
  1588.  
  1589. cash.Name = "cash"
  1590. cash.Parent = Search_2
  1591. cash.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1592. cash.BackgroundTransparency = 1.000
  1593. cash.BorderSizePixel = 0
  1594. cash.Position = UDim2.new(0.0177452099, 0, 0.338817954, 0)
  1595. cash.Size = UDim2.new(0, 335, 0, 21)
  1596. cash.Font = Enum.Font.Code
  1597. cash.Text = "Money: HOLDER"
  1598. cash.TextColor3 = Color3.fromRGB(220, 220, 220)
  1599. cash.TextSize = 18.000
  1600. cash.TextWrapped = true
  1601. cash.TextXAlignment = Enum.TextXAlignment.Left
  1602.  
  1603. UserIMG.Name = "UserIMG"
  1604. UserIMG.Parent = Search_2
  1605. UserIMG.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1606. UserIMG.BackgroundTransparency = 1.000
  1607. UserIMG.Position = UDim2.new(0.780036926, 0, 0.177514777, 0)
  1608. UserIMG.Size = UDim2.new(0, 100, 0, 100)
  1609. UserIMG.Image = "rbxasset://textures/ui/GuiImagePlaceholder.png"
  1610.  
  1611. UICorner_17.CornerRadius = UDim.new(1, 10)
  1612. UICorner_17.Parent = UserIMG
  1613.  
  1614. wanted.Name = "wanted"
  1615. wanted.Parent = Search_2
  1616. wanted.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1617. wanted.BackgroundTransparency = 1.000
  1618. wanted.BorderSizePixel = 0
  1619. wanted.Position = UDim2.new(0.0177452099, 0, 0.41278249, 0)
  1620. wanted.Size = UDim2.new(0, 335, 0, 21)
  1621. wanted.Font = Enum.Font.Code
  1622. wanted.Text = "Wanted: HOLDER"
  1623. wanted.TextColor3 = Color3.fromRGB(220, 220, 220)
  1624. wanted.TextSize = 18.000
  1625. wanted.TextWrapped = true
  1626. wanted.TextXAlignment = Enum.TextXAlignment.Left
  1627.  
  1628. Title_3.Name = "Title"
  1629. Title_3.Parent = Main
  1630. Title_3.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1631. Title_3.BackgroundTransparency = 1.000
  1632. Title_3.BorderSizePixel = 0
  1633. Title_3.Position = UDim2.new(0.123752303, 0, 0.0177514795, 0)
  1634. Title_3.Size = UDim2.new(0, 153, 0, 21)
  1635. Title_3.Font = Enum.Font.Code
  1636. Title_3.Text = "Bedrock's Controll v1"
  1637. Title_3.TextColor3 = Color3.fromRGB(220, 220, 220)
  1638. Title_3.TextSize = 14.000
  1639. Title_3.TextWrapped = true
  1640. Title_3.TextXAlignment = Enum.TextXAlignment.Left
  1641.  
  1642. -- Scripts:
  1643.  
  1644. local function GRQO_fake_script() -- Home.LocalScript
  1645. local script = Instance.new('LocalScript', Home)
  1646.  
  1647. local Home = script.Parent.Parent.Parent.Sites.Home
  1648. local Teleport = script.Parent.Parent.Parent.Sites.Teleports
  1649. local Cmds = script.Parent.Parent.Parent.Sites.Cmds
  1650. local Settings = script.Parent.Parent.Parent.Sites.Settings
  1651. local Info = script.Parent.Parent.Parent.Sites.Info
  1652. local Search = script.Parent.Parent.Parent.Sites.Search
  1653.  
  1654. local button = script.Parent
  1655.  
  1656. function leftClick()
  1657. Search.Visible = false
  1658. Home.Visible = true
  1659. Teleport.Visible = false
  1660. Cmds.Visible = false
  1661. Settings.Visible = false
  1662. Info.Visible = false
  1663. end
  1664.  
  1665. button.MouseButton1Click:Connect(leftClick)
  1666. end
  1667. coroutine.wrap(GRQO_fake_script)()
  1668. local function TNFK_fake_script() -- Settings.LocalScript
  1669. local script = Instance.new('LocalScript', Settings)
  1670.  
  1671. local Home = script.Parent.Parent.Parent.Sites.Home
  1672. local Teleport = script.Parent.Parent.Parent.Sites.Teleports
  1673. local Cmds = script.Parent.Parent.Parent.Sites.Cmds
  1674. local Settings = script.Parent.Parent.Parent.Sites.Settings
  1675. local Info = script.Parent.Parent.Parent.Sites.Info
  1676. local Search = script.Parent.Parent.Parent.Sites.Search
  1677.  
  1678. local button = script.Parent
  1679.  
  1680. function leftClick()
  1681. Search.Visible = false
  1682. Home.Visible = false
  1683. Teleport.Visible = false
  1684. Cmds.Visible = false
  1685. Settings.Visible = true
  1686. Info.Visible = false
  1687. end
  1688.  
  1689. button.MouseButton1Click:Connect(leftClick)
  1690. end
  1691. coroutine.wrap(TNFK_fake_script)()
  1692. local function YXXMEU_fake_script() -- Info.LocalScript
  1693. local script = Instance.new('LocalScript', Info)
  1694.  
  1695. local Home = script.Parent.Parent.Parent.Sites.Home
  1696. local Teleport = script.Parent.Parent.Parent.Sites.Teleports
  1697. local Cmds = script.Parent.Parent.Parent.Sites.Cmds
  1698. local Settings = script.Parent.Parent.Parent.Sites.Settings
  1699. local Info = script.Parent.Parent.Parent.Sites.Info
  1700. local Search = script.Parent.Parent.Parent.Sites.Search
  1701.  
  1702. local button = script.Parent
  1703.  
  1704. function leftClick()
  1705. Search.Visible = false
  1706. Home.Visible = false
  1707. Teleport.Visible = false
  1708. Cmds.Visible = false
  1709. Settings.Visible = false
  1710. Info.Visible = true
  1711. end
  1712.  
  1713. button.MouseButton1Click:Connect(leftClick)
  1714. end
  1715. coroutine.wrap(YXXMEU_fake_script)()
  1716. local function DGHUM_fake_script() -- Teleports.LocalScript
  1717. local script = Instance.new('LocalScript', Teleports)
  1718.  
  1719. local Home = script.Parent.Parent.Parent.Sites.Home
  1720. local Teleport = script.Parent.Parent.Parent.Sites.Teleports
  1721. local Cmds = script.Parent.Parent.Parent.Sites.Cmds
  1722. local Settings = script.Parent.Parent.Parent.Sites.Settings
  1723. local Info = script.Parent.Parent.Parent.Sites.Info
  1724. local Search = script.Parent.Parent.Parent.Sites.Search
  1725.  
  1726. local button = script.Parent
  1727.  
  1728. function leftClick()
  1729. Search.Visible = false
  1730. Home.Visible = false
  1731. Teleport.Visible = true
  1732. Cmds.Visible = false
  1733. Settings.Visible = false
  1734. Info.Visible = false
  1735. end
  1736.  
  1737. button.MouseButton1Click:Connect(leftClick)
  1738. end
  1739. coroutine.wrap(DGHUM_fake_script)()
  1740. local function MFTM_fake_script() -- Cmds.LocalScript
  1741. local script = Instance.new('LocalScript', Cmds)
  1742.  
  1743. local Home = script.Parent.Parent.Parent.Sites.Home
  1744. local Teleport = script.Parent.Parent.Parent.Sites.Teleports
  1745. local Cmds = script.Parent.Parent.Parent.Sites.Cmds
  1746. local Settings = script.Parent.Parent.Parent.Sites.Settings
  1747. local Info = script.Parent.Parent.Parent.Sites.Info
  1748. local Search = script.Parent.Parent.Parent.Sites.Search
  1749.  
  1750. local button = script.Parent
  1751.  
  1752. function leftClick()
  1753. Search.Visible = false
  1754. Home.Visible = false
  1755. Teleport.Visible = false
  1756. Cmds.Visible = true
  1757. Settings.Visible = false
  1758. Info.Visible = false
  1759. end
  1760.  
  1761. button.MouseButton1Click:Connect(leftClick)
  1762. end
  1763. coroutine.wrap(MFTM_fake_script)()
  1764. local function HJGQ_fake_script() -- Search.LocalScript
  1765. local script = Instance.new('LocalScript', Search)
  1766.  
  1767. local Home = script.Parent.Parent.Parent.Sites.Home
  1768. local Teleport = script.Parent.Parent.Parent.Sites.Teleports
  1769. local Cmds = script.Parent.Parent.Parent.Sites.Cmds
  1770. local Settings = script.Parent.Parent.Parent.Sites.Settings
  1771. local Info = script.Parent.Parent.Parent.Sites.Info
  1772. local Search = script.Parent.Parent.Parent.Sites.Search
  1773.  
  1774. local button = script.Parent
  1775.  
  1776. function leftClick()
  1777. Search.Visible = true
  1778. Home.Visible = false
  1779. Teleport.Visible = false
  1780. Cmds.Visible = false
  1781. Settings.Visible = false
  1782. Info.Visible = false
  1783. end
  1784.  
  1785. button.MouseButton1Click:Connect(leftClick)
  1786. end
  1787. coroutine.wrap(HJGQ_fake_script)()
  1788. local function SURQ_fake_script() -- Username.LocalScript
  1789. local script = Instance.new('LocalScript', Username)
  1790.  
  1791. local text = script.Parent.Parent.Username
  1792.  
  1793. text.Text = "Username: " .. game.Players.LocalPlayer.Name
  1794. end
  1795. coroutine.wrap(SURQ_fake_script)()
  1796. local function YQCCP_fake_script() -- watext.LocalScript
  1797. local script = Instance.new('LocalScript', watext)
  1798.  
  1799. local text = script.Parent.Parent.watext
  1800.  
  1801. local http_request = http_request;
  1802. if syn then
  1803. http_request = syn.request
  1804. else
  1805. http_request = request
  1806. end
  1807.  
  1808. while wait(5) do
  1809.  
  1810. text.Text = "- Nothing much just released the script"
  1811. end
  1812. end
  1813. coroutine.wrap(YQCCP_fake_script)()
  1814. local function ONSSF_fake_script() -- TextButton.LocalScript
  1815. local script = Instance.new('LocalScript', TextButton)
  1816.  
  1817. local button = script.Parent
  1818.  
  1819. function leftClick()
  1820. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-413, 23, -286)
  1821. end
  1822.  
  1823. button.MouseButton1Click:Connect(leftClick)
  1824. end
  1825. coroutine.wrap(ONSSF_fake_script)()
  1826. local function MZPROM_fake_script() -- TextButton_2.LocalScript
  1827. local script = Instance.new('LocalScript', TextButton_2)
  1828.  
  1829. local button = script.Parent
  1830.  
  1831. function leftClick()
  1832. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-260, 22, -763)
  1833. end
  1834.  
  1835. button.MouseButton1Click:Connect(leftClick)
  1836. end
  1837. coroutine.wrap(MZPROM_fake_script)()
  1838. local function NINLFE_fake_script() -- TextButton_3.LocalScript
  1839. local script = Instance.new('LocalScript', TextButton_3)
  1840.  
  1841. local button = script.Parent
  1842.  
  1843. function leftClick()
  1844. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(658, 48, -73)
  1845. end
  1846.  
  1847. button.MouseButton1Click:Connect(leftClick)
  1848. end
  1849. coroutine.wrap(NINLFE_fake_script)()
  1850. local function UNVTO_fake_script() -- TextButton_4.LocalScript
  1851. local script = Instance.new('LocalScript', TextButton_4)
  1852.  
  1853. local button = script.Parent
  1854.  
  1855. function leftClick()
  1856. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-932, 22, -483)
  1857. end
  1858.  
  1859. button.MouseButton1Click:Connect(leftClick)
  1860. end
  1861. coroutine.wrap(UNVTO_fake_script)()
  1862. local function MOSNQAL_fake_script() -- TextButton_5.LocalScript
  1863. local script = Instance.new('LocalScript', TextButton_5)
  1864.  
  1865. local button = script.Parent
  1866.  
  1867. function leftClick()
  1868. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-653, 22, 252)
  1869. end
  1870.  
  1871. button.MouseButton1Click:Connect(leftClick)
  1872. end
  1873. coroutine.wrap(MOSNQAL_fake_script)()
  1874. local function BDTR_fake_script() -- TextButton_6.LocalScript
  1875. local script = Instance.new('LocalScript', TextButton_6)
  1876.  
  1877. local button = script.Parent
  1878.  
  1879. function leftClick()
  1880. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-266, 0, -339)
  1881. end
  1882.  
  1883. button.MouseButton1Click:Connect(leftClick)
  1884. end
  1885. coroutine.wrap(BDTR_fake_script)()
  1886. local function NPTG_fake_script() -- TextButton_7.LocalScript
  1887. local script = Instance.new('LocalScript', TextButton_7)
  1888.  
  1889. local button = script.Parent
  1890.  
  1891. function leftClick()
  1892. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(205, 38, 200011)
  1893. end
  1894.  
  1895. button.MouseButton1Click:Connect(leftClick)
  1896. end
  1897. coroutine.wrap(NPTG_fake_script)()
  1898. local function NHRGVC_fake_script() -- TextButton_8.LocalScript
  1899. local script = Instance.new('LocalScript', TextButton_8)
  1900.  
  1901. local button = script.Parent
  1902.  
  1903. function leftClick()
  1904. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(72, 139, -686)
  1905. end
  1906.  
  1907. button.MouseButton1Click:Connect(leftClick)
  1908. end
  1909. coroutine.wrap(NHRGVC_fake_script)()
  1910. local function QALRU_fake_script() -- TextButton_9.LocalScript
  1911. local script = Instance.new('LocalScript', TextButton_9)
  1912.  
  1913. local button = script.Parent
  1914.  
  1915. function leftClick()
  1916. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-275, 26, -21)
  1917. end
  1918.  
  1919. button.MouseButton1Click:Connect(leftClick)
  1920. end
  1921. coroutine.wrap(QALRU_fake_script)()
  1922. local function AOSAXLW_fake_script() -- TextButton_10.LocalScript
  1923. local script = Instance.new('LocalScript', TextButton_10)
  1924.  
  1925. local button = script.Parent
  1926.  
  1927. function leftClick()
  1928. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(482, 48, -620)
  1929. end
  1930.  
  1931. button.MouseButton1Click:Connect(leftClick)
  1932. end
  1933. coroutine.wrap(AOSAXLW_fake_script)()
  1934. local function XXYN_fake_script() -- TextButton_11.LocalScript
  1935. local script = Instance.new('LocalScript', TextButton_11)
  1936.  
  1937. local button = script.Parent
  1938.  
  1939. function leftClick()
  1940. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-581, 8, -735)
  1941. end
  1942.  
  1943. button.MouseButton1Click:Connect(leftClick)
  1944. end
  1945. coroutine.wrap(XXYN_fake_script)()
  1946. local function IGPQZ_fake_script() -- TextButton_12.LocalScript
  1947. local script = Instance.new('LocalScript', TextButton_12)
  1948.  
  1949. local button = script.Parent
  1950.  
  1951. function leftClick()
  1952. game:service 'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-872, -38, -585)
  1953. end
  1954.  
  1955. button.MouseButton1Click:Connect(leftClick)
  1956. end
  1957. coroutine.wrap(IGPQZ_fake_script)()
  1958. local function XGCD_fake_script() -- Search_2.LocalScript
  1959. local script = Instance.new('LocalScript', Search_2)
  1960.  
  1961. local usname = script.Parent.username
  1962.  
  1963. local button = script.Parent.searchBTN
  1964. local cash = script.Parent.cash
  1965. local wanted = script.Parent.wanted
  1966.  
  1967. function leftClick()
  1968. local fuckkk = script.Parent.UserIMG
  1969. local aaakakakkakaka = script.Parent.TextBox.Text
  1970. local player = game:GetService("Players")[aaakakakkakaka]
  1971.  
  1972. local userId = player.UserId
  1973.  
  1974. local thumbType = Enum.ThumbnailType.AvatarBust
  1975.  
  1976. local thumbSize = Enum.ThumbnailSize.Size420x420
  1977.  
  1978. local content, isReady = game.Players:GetUserThumbnailAsync(userId, thumbType, thumbSize)
  1979.  
  1980. fuckkk.Image = content
  1981.  
  1982. usname.Text = "Username: " .. tostring(aaakakakkakaka)
  1983. cash.Text = "Money: " .. game:GetService("Players")[tostring(aaakakakkakaka)].DataFolder.Currency.Value
  1984. wanted.Text = "Wanted: " ..
  1985. game:GetService("Players")[tostring(aaakakakkakaka)].DataFolder.Information.Wanted
  1986. .Value
  1987. end
  1988.  
  1989. button.MouseButton1Click:Connect(leftClick)
  1990. end
  1991. coroutine.wrap(XGCD_fake_script)()
  1992. local function PJUHTHR_fake_script() -- Main.LocalScript
  1993. local script = Instance.new('LocalScript', Main)
  1994.  
  1995. local s = script.Parent.Parent.Main
  1996.  
  1997. s.Draggable = true
  1998. s.Active = true
  1999. s.Selectable = true
  2000. end
  2001. coroutine.wrap(PJUHTHR_fake_script)()
  2002.  
  2003. end
  2004.  
  2005. for i, v in pairs(getgenv().alts) do
  2006.  
  2007. if v == game.Players.LocalPlayer.UserId then
  2008.  
  2009. Clip = false
  2010.  
  2011. local speaker = game.Players.LocalPlayer
  2012. wait(0.1)
  2013. local function NoclipLoop()
  2014. if Clip == false and speaker.Character ~= nil then
  2015. for _, child in pairs(speaker.Character:GetDescendants()) do
  2016. if child:IsA("BasePart") and child.CanCollide == true and child.Name ~= floatName then
  2017. child.CanCollide = true
  2018. end
  2019. end
  2020. end
  2021. end
  2022. Noclipping = game:GetService('RunService').Stepped:Connect(NoclipLoop)
  2023. workspace:FindFirstChildOfClass('Terrain').WaterWaveSize = 0
  2024. workspace:FindFirstChildOfClass('Terrain').WaterWaveSpeed = 0
  2025. workspace:FindFirstChildOfClass('Terrain').WaterReflectance = 0
  2026. workspace:FindFirstChildOfClass('Terrain').WaterTransparency = 0
  2027. game:GetService("Lighting").GlobalShadows = false
  2028. game:GetService("Lighting").FogEnd = 9e9
  2029. settings().Rendering.QualityLevel = 1
  2030. for i, v in pairs(game:GetDescendants()) do
  2031. if v:IsA("Part") or v:IsA("UnionOperation") or v:IsA("MeshPart") or v:IsA("CornerWedgePart") or
  2032. v:IsA("TrussPart") then
  2033. v.Material = "Plastic"
  2034. v.Reflectance = 0
  2035. elseif v:IsA("Decal") then
  2036. v.Transparency = 1
  2037. elseif v:IsA("ParticleEmitter") or v:IsA("Trail") then
  2038. v.Lifetime = NumberRange.new(0)
  2039. elseif v:IsA("Explosion") then
  2040. v.BlastPressure = 1
  2041. v.BlastRadius = 1
  2042. end
  2043. end
  2044. for i, v in pairs(game:GetService("Lighting"):GetDescendants()) do
  2045. if v:IsA("BlurEffect") or v:IsA("SunRaysEffect") or v:IsA("ColorCorrectionEffect") or
  2046. v:IsA("BloomEffect") or v:IsA("DepthOfFieldEffect") then
  2047. v.Enabled = false
  2048. end
  2049. end
  2050. workspace.DescendantAdded:Connect(function(child)
  2051. coroutine.wrap(function()
  2052. if child:IsA('ForceField') then
  2053. game:GetService('RunService').Heartbeat:Wait()
  2054. child:Destroy()
  2055. elseif child:IsA('Sparkles') then
  2056. game:GetService('RunService').Heartbeat:Wait()
  2057. child:Destroy()
  2058. elseif child:IsA('Smoke') or child:IsA('Fire') then
  2059. game:GetService('RunService').Heartbeat:Wait()
  2060. child:Destroy()
  2061. end
  2062. end)()
  2063. end)
  2064.  
  2065. local timeBegan = tick()
  2066. for i, v in ipairs(workspace:GetDescendants()) do
  2067. if v:IsA("BasePart") then
  2068. v.Material = "SmoothPlastic"
  2069. end
  2070. end
  2071. for i, v in ipairs(game:GetService("Lighting"):GetChildren()) do
  2072. v:Destroy()
  2073. end
  2074. local timeEnd = tick() - timeBegan
  2075. local timeMS = math.floor(timeEnd * 1000)
  2076.  
  2077. local decalsyeeted = true -- Leaving this on makes games look shitty but the fps goes up by at least 20.
  2078. local g = game
  2079. local w = g.Workspace
  2080. local l = g.Lighting
  2081. local t = w.Terrain
  2082. t.WaterWaveSize = 0
  2083. t.WaterWaveSpeed = 0
  2084. t.WaterReflectance = 0
  2085. t.WaterTransparency = 0
  2086. l.GlobalShadows = false
  2087. l.FogEnd = 9e9
  2088. l.Brightness = 0
  2089. settings().Rendering.QualityLevel = "Level01"
  2090. for i, v in pairs(g:GetDescendants()) do
  2091. if v:IsA("Part") or v:IsA("Union") or v:IsA("CornerWedgePart") or v:IsA("TrussPart") then
  2092. v.Material = "Plastic"
  2093. v.Reflectance = 0
  2094. elseif v:IsA("Decal") or v:IsA("Texture") and decalsyeeted then
  2095. v.Transparency = 1
  2096. elseif v:IsA("ParticleEmitter") or v:IsA("Trail") then
  2097. v.Lifetime = NumberRange.new(0)
  2098. elseif v:IsA("Explosion") then
  2099. v.BlastPressure = 1
  2100. v.BlastRadius = 1
  2101. elseif v:IsA("Fire") or v:IsA("SpotLight") or v:IsA("Smoke") then
  2102. v.Enabled = false
  2103. elseif v:IsA("MeshPart") then
  2104. v.Material = "Plastic"
  2105. v.Reflectance = 0
  2106. v.TextureID = 10385902758728957
  2107. end
  2108. end
  2109. for i, e in pairs(l:GetChildren()) do
  2110. if e:IsA("BlurEffect") or e:IsA("SunRaysEffect") or e:IsA("ColorCorrectionEffect") or
  2111. e:IsA("BloomEffect") or e:IsA("DepthOfFieldEffect") then
  2112. e.Enabled = false
  2113. end
  2114. end
  2115.  
  2116. local decalsyeeted = true -- Leaving this on makes games look shitty but the fps goes up by at least 20.
  2117. local g = game
  2118. local w = g.Workspace
  2119. local l = g.Lighting
  2120. local t = w.Terrain
  2121. t.WaterWaveSize = 0
  2122. t.WaterWaveSpeed = 0
  2123. t.WaterReflectance = 0
  2124. t.WaterTransparency = 0
  2125. l.GlobalShadows = false
  2126. l.FogEnd = 9e9
  2127. l.Brightness = 0
  2128. settings().Rendering.QualityLevel = "Level01"
  2129. for i, v in pairs(g:GetDescendants()) do
  2130. if v:IsA("Part") or v:IsA("Union") or v:IsA("CornerWedgePart") or v:IsA("TrussPart") then
  2131. v.Material = "Plastic"
  2132. v.Reflectance = 0
  2133. elseif v:IsA("Decal") or v:IsA("Texture") and decalsyeeted then
  2134. v.Transparency = 1
  2135. elseif v:IsA("ParticleEmitter") or v:IsA("Trail") then
  2136. v.Lifetime = NumberRange.new(0)
  2137. elseif v:IsA("Explosion") then
  2138. v.BlastPressure = 1
  2139. v.BlastRadius = 1
  2140. elseif v:IsA("Fire") or v:IsA("SpotLight") or v:IsA("Smoke") then
  2141. v.Enabled = false
  2142. elseif v:IsA("MeshPart") then
  2143. v.Material = "Plastic"
  2144. v.Reflectance = 0
  2145. v.TextureID = 10385902758728957
  2146. end
  2147. end
  2148. for i, e in pairs(l:GetChildren()) do
  2149. if e:IsA("BlurEffect") or e:IsA("SunRaysEffect") or e:IsA("ColorCorrectionEffect") or
  2150. e:IsA("BloomEffect") or e:IsA("DepthOfFieldEffect") then
  2151. e.Enabled = false
  2152. end
  2153. end
  2154.  
  2155. function RandomVariable(length)
  2156. local res = ""
  2157. for i = 1, length do
  2158. res = res .. string.char(math.random(97, 122))
  2159. end
  2160. return res
  2161. end
  2162.  
  2163. -- Gui to Lua
  2164. -- Version: 3.2
  2165. game:GetService("RunService"):Set3dRenderingEnabled(false)
  2166. -- Instances:
  2167.  
  2168. local PSiwshuwDUItgsuiz = Instance.new("ScreenGui")
  2169. local Frame = Instance.new("Frame")
  2170. local TextLabel = Instance.new("TextLabel")
  2171. local TextButton = Instance.new("TextButton")
  2172. local UICorner = Instance.new("UICorner")
  2173. local TextButton_2 = Instance.new("TextButton")
  2174. local UICorner_2 = Instance.new("UICorner")
  2175. local TextButton_3 = Instance.new("TextButton")
  2176. local UICorner_3 = Instance.new("UICorner")
  2177. local TextLabel_2 = Instance.new("TextLabel")
  2178. local TextLabel_3 = Instance.new("TextLabel")
  2179. local TextLabel_4 = Instance.new("TextLabel")
  2180.  
  2181. -- Properties:
  2182.  
  2183. PSiwshuwDUItgsuiz.Name = RandomVariable(20)
  2184. PSiwshuwDUItgsuiz.Parent = game.CoreGui
  2185. PSiwshuwDUItgsuiz.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  2186. PSiwshuwDUItgsuiz.IgnoreGuiInset = true
  2187. Frame.Parent = PSiwshuwDUItgsuiz
  2188. Frame.AnchorPoint = Vector2.new(0.5, 0.5)
  2189. Frame.BackgroundColor3 = Color3.fromRGB(31, 31, 31)
  2190. Frame.Position = UDim2.new(0.5, 0, 0.5, 0)
  2191. Frame.Size = UDim2.new(1, 0, 1, 36)
  2192.  
  2193. TextLabel.Parent = Frame
  2194. TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  2195. TextLabel.BackgroundTransparency = 1.000
  2196. TextLabel.BorderSizePixel = 0
  2197. TextLabel.Position = UDim2.new(0.379002213, 0, 0.0237247907, 0)
  2198. TextLabel.Size = UDim2.new(0, 325, 0, 54)
  2199. TextLabel.Font = Enum.Font.Code
  2200. TextLabel.Text = "Bedrock's Controll v1"
  2201. TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
  2202. TextLabel.TextScaled = true
  2203. TextLabel.TextSize = 14.000
  2204. TextLabel.TextWrapped = true
  2205.  
  2206. TextButton.Parent = Frame
  2207. TextButton.BackgroundColor3 = Color3.fromRGB(43, 43, 43)
  2208. TextButton.Position = UDim2.new(0.161833167, 0, 0.12319342, 0)
  2209. TextButton.Size = UDim2.new(0, 274, 0, 72)
  2210. TextButton.Font = Enum.Font.Code
  2211. TextButton.Text = " Copy Discord "
  2212. TextButton.TextColor3 = Color3.fromRGB(220, 220, 220)
  2213. TextButton.TextScaled = true
  2214. TextButton.TextSize = 14.000
  2215. TextButton.TextWrapped = true
  2216.  
  2217. UICorner.Parent = TextButton
  2218.  
  2219. TextButton_2.Parent = Frame
  2220. TextButton_2.BackgroundColor3 = Color3.fromRGB(43, 43, 43)
  2221. TextButton_2.Position = UDim2.new(0.397871882, 0, 0.12319342, 0)
  2222. TextButton_2.Size = UDim2.new(0, 274, 0, 72)
  2223. TextButton_2.Font = Enum.Font.Code
  2224. TextButton_2.Text = " Copy Group "
  2225. TextButton_2.TextColor3 = Color3.fromRGB(220, 220, 220)
  2226. TextButton_2.TextScaled = true
  2227. TextButton_2.TextSize = 14.000
  2228. TextButton_2.TextWrapped = true
  2229.  
  2230. UICorner_2.Parent = TextButton_2
  2231.  
  2232. TextButton_3.Parent = Frame
  2233. TextButton_3.BackgroundColor3 = Color3.fromRGB(43, 43, 43)
  2234. TextButton_3.Position = UDim2.new(0.633166015, 0, 0.12319342, 0)
  2235. TextButton_3.Size = UDim2.new(0, 274, 0, 72)
  2236. TextButton_3.Font = Enum.Font.Code
  2237. TextButton_3.Text = " Leave Game "
  2238. TextButton_3.TextColor3 = Color3.fromRGB(220, 220, 220)
  2239. TextButton_3.TextScaled = true
  2240. TextButton_3.TextSize = 14.000
  2241. TextButton_3.TextWrapped = true
  2242.  
  2243. UICorner_3.Parent = TextButton_3
  2244.  
  2245. TextLabel_2.Parent = Frame
  2246. TextLabel_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  2247. TextLabel_2.BackgroundTransparency = 1.000
  2248. TextLabel_2.BorderSizePixel = 0
  2249. TextLabel_2.Position = UDim2.new(0.378997803, 0, 0.869513631, 0)
  2250. TextLabel_2.Size = UDim2.new(0, 325, 0, 54)
  2251. TextLabel_2.Font = Enum.Font.Code
  2252. TextLabel_2.Text = "Version 1"
  2253. TextLabel_2.TextColor3 = Color3.fromRGB(255, 255, 255)
  2254. TextLabel_2.TextScaled = true
  2255. TextLabel_2.TextSize = 14.000
  2256. TextLabel_2.TextWrapped = true
  2257.  
  2258. TextLabel_3.Parent = Frame
  2259. TextLabel_3.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  2260. TextLabel_3.BackgroundTransparency = 1.000
  2261. TextLabel_3.BorderSizePixel = 0
  2262. TextLabel_3.Position = UDim2.new(0.161833152, 0, 0.290628701, 0)
  2263. TextLabel_3.Size = UDim2.new(0, 907, 0, 54)
  2264. TextLabel_3.Font = Enum.Font.Code
  2265. TextLabel_3.Text = "Name: HOLDERRR"
  2266. TextLabel_3.TextColor3 = Color3.fromRGB(255, 255, 255)
  2267. TextLabel_3.TextSize = 49.000
  2268. TextLabel_3.TextWrapped = true
  2269. TextLabel_3.TextXAlignment = Enum.TextXAlignment.Left
  2270.  
  2271. TextLabel_4.Parent = Frame
  2272. TextLabel_4.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  2273. TextLabel_4.BackgroundTransparency = 1.000
  2274. TextLabel_4.BorderSizePixel = 0
  2275. TextLabel_4.Position = UDim2.new(0.161833152, 0, 0.371293008, 0)
  2276. TextLabel_4.Size = UDim2.new(0, 907, 0, 54)
  2277. TextLabel_4.Font = Enum.Font.Code
  2278. TextLabel_4.Text = "Money: HOLDER"
  2279. TextLabel_4.TextColor3 = Color3.fromRGB(255, 255, 255)
  2280. TextLabel_4.TextSize = 49.000
  2281. TextLabel_4.TextWrapped = true
  2282. TextLabel_4.TextXAlignment = Enum.TextXAlignment.Left
  2283.  
  2284. -- Scripts:
  2285.  
  2286. local function XCBMJ_fake_script() -- Frame.LocalScript
  2287. local script = Instance.new('LocalScript', Frame)
  2288.  
  2289. local StarterGui = game:GetService("StarterGui")
  2290. StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Health, false)
  2291.  
  2292. local StarterGui = game:GetService("StarterGui")
  2293. StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.All, false)
  2294.  
  2295. local StarterGui = game:GetService("StarterGui")
  2296. StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.All, false)
  2297. StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Chat, false)
  2298.  
  2299. local StarterGui = game:GetService("StarterGui")
  2300. StarterGui:SetCore("TopbarEnabled", false)
  2301.  
  2302. local UIS = game:GetService("UserInputService")
  2303. UIS.ModalEnabled = true
  2304. end
  2305. coroutine.wrap(XCBMJ_fake_script)()
  2306. local function PPEQE_fake_script() -- TextButton.LocalScript
  2307. local script = Instance.new('LocalScript', TextButton)
  2308.  
  2309. local button = script.Parent
  2310.  
  2311. function leftClick()
  2312. setclipboard("https://discord.gg/AQbQ7tGWFS")
  2313. end
  2314.  
  2315. button.MouseButton1Click:Connect(leftClick)
  2316. end
  2317. coroutine.wrap(PPEQE_fake_script)()
  2318. local function CDDHNKJ_fake_script() -- TextButton_2.LocalScript
  2319. local script = Instance.new('LocalScript', TextButton_2)
  2320.  
  2321. local button = script.Parent
  2322.  
  2323. function leftClick()
  2324. setclipboard(
  2325. "https://www.roblox.com/groups/13503339/Wer-Der-mann-mit-schiessgewehr-Wo-Im-klo#!/about")
  2326. end
  2327.  
  2328. button.MouseButton1Click:Connect(leftClick)
  2329. end
  2330. coroutine.wrap(CDDHNKJ_fake_script)()
  2331. local function RUQFMCI_fake_script() -- TextButton_3.LocalScript
  2332. local script = Instance.new('LocalScript', TextButton_3)
  2333.  
  2334. local button = script.Parent
  2335.  
  2336. function leftClick()
  2337. game.Players.LocalPlayer:Kick('Left game succcessfully.')
  2338. end
  2339.  
  2340. button.MouseButton1Click:Connect(leftClick)
  2341. end
  2342. coroutine.wrap(RUQFMCI_fake_script)()
  2343. local function PJZGR_fake_script() -- TextLabel_3.LocalScript
  2344. local script = Instance.new('LocalScript', TextLabel_3)
  2345.  
  2346. local text = script.Parent
  2347.  
  2348. text.Text = "Name: " .. game.Players.LocalPlayer.Name
  2349. end
  2350. coroutine.wrap(PJZGR_fake_script)()
  2351. local function WDTSQEC_fake_script() -- TextLabel_4.LocalScript
  2352. local script = Instance.new('LocalScript', TextLabel_4)
  2353.  
  2354. local text = script.Parent
  2355.  
  2356. while wait() do
  2357. text.Text = "Money: " ..
  2358. game:GetService("Players").LocalPlayer.PlayerGui.MainScreenGui.MoneyText.Text
  2359. end
  2360. end
  2361. coroutine.wrap(WDTSQEC_fake_script)()
  2362.  
  2363. local RunService = game:GetService("RunService")
  2364. local MaxFPS = getgenv().altFPS
  2365. while true do
  2366. local t0 = tick()
  2367. RunService.Heartbeat:Wait()
  2368. repeat
  2369. until (t0 + 1 / MaxFPS) < tick()
  2370. end
  2371. end
  2372. end
  2373.  
  2374. else
  2375. game.Players.LocalPlayer:Kick("Only DV hood.")
  2376. end
Add Comment
Please, Sign In to add comment