Advertisement
CriminalMastermindW

criminality crims gui

Apr 24th, 2022
3,447
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 18.76 KB | None | 1 0
  1. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
  2.  
  3. local Window = OrionLib:MakeWindow({Name = "Crim's Criminality Gui!"})
  4.  
  5. OrionLib:MakeNotification({
  6. Name = "Hey There!",
  7. Content = "Don't Forget to add my discord: !CriminalMastermindW#8333",
  8. Time = 5
  9. })
  10.  
  11. local Tab = Window:MakeTab({
  12. Name = "Criminality",
  13. Icon = "rbxassetid://4483345998",
  14. PremiumOnly = false
  15. })
  16.  
  17. Tab:AddButton({
  18. Name = "Press This First",
  19. Callback = function()
  20. loadstring(game:HttpGet("https://raw.githubusercontent.com/NougatBitz/BitzUtils/main/CriminalityFeatures.lua"))()
  21. end
  22. })
  23.  
  24. Tab:AddButton({
  25. Name = "Wallbang",
  26. Callback = function()
  27. game:service[[Workspace]]:FindFirstChild('Map'):FindFirstChild('Parts'):FindFirstChild('M_Parts').Parent = game:service[[Workspace]]:FindFirstChild('Characters')
  28.  
  29. end
  30. })
  31.  
  32. Tab:AddButton({
  33. Name = "No Recoil",
  34. Callback = function()
  35. ToggleBitzFeature("NoRecoil", true)
  36. end
  37. })
  38.  
  39. Tab:AddButton({
  40. Name = "No Spread",
  41. Callback = function()
  42. ToggleBitzFeature("NoSpread", true)
  43. end
  44. })
  45.  
  46. Tab:AddButton({
  47. Name = "ESP Gui",
  48. Callback = function()
  49. local s, r = pcall(game.HttpGet, game, 'https://raw.githubusercontent.com/wally-rblx/roblox-scripts/main/criminality_esp.lua')
  50. if s and loadstring(r) then
  51. pcall(loadstring(r))
  52. else
  53. game.Players.LocalPlayer:Kick('failed to load')
  54. end
  55. end
  56. })
  57.  
  58. local Tab = Window:MakeTab({
  59. Name = "Aim",
  60. Icon = "rbxassetid://4483345998",
  61. PremiumOnly = false
  62. })
  63.  
  64. Tab:AddButton({
  65. Name = "Aimlock Body",
  66. Callback = function()
  67. local Area = game:GetService("Workspace")
  68. local RunService = game:GetService("RunService")
  69. local UIS = game:GetService("UserInputService")
  70. local Players = game:GetService("Players")
  71. local LocalPlayer = Players.LocalPlayer
  72. local MyCharacter = LocalPlayer.Character
  73. local MyRoot = MyCharacter:FindFirstChild("HumanoidRootPart")
  74. local MyHumanoid = MyCharacter:FindFirstChild("Humanoid")
  75. local Mouse = LocalPlayer:GetMouse()
  76. local MyView = Area.CurrentCamera
  77. local MyTeamColor = LocalPlayer.TeamColor
  78. local HoldingM2 = false
  79. local Active = false
  80. local Lock = false
  81. local Epitaph = .187 ---Note: The Bigger The Number, The More Prediction.
  82. local HeadOffset = Vector3.new(0, .1, 0)
  83.  
  84. _G.TeamCheck = false
  85. _G.AimPart = "HumanoidRootPart"
  86. _G.Sensitivity = 0
  87. _G.CircleSides = 64
  88. _G.CircleColor = Color3.fromRGB(255, 0, 130)
  89. _G.CircleTransparency = 0
  90. _G.CircleRadius = 200
  91. _G.CircleFilled = false
  92. _G.CircleVisible = true
  93. _G.CircleThickness = 1
  94.  
  95. local FOVCircle = Drawing.new("Circle")
  96. FOVCircle.Position = Vector2.new(MyView.ViewportSize.X / 2, MyView.ViewportSize.Y / 2)
  97. FOVCircle.Radius = _G.CircleRadius
  98. FOVCircle.Filled = _G.CircleFilled
  99. FOVCircle.Color = _G.CircleColor
  100. FOVCircle.Visible = _G.CircleVisible
  101. FOVCircle.Transparency = _G.CircleTransparency
  102. FOVCircle.NumSides = _G.CircleSides
  103. FOVCircle.Thickness = _G.CircleThickness
  104.  
  105. local function CursorLock()
  106. UIS.MouseBehavior = Enum.MouseBehavior.LockCenter
  107. end
  108. local function UnLockCursor()
  109. HoldingM2 = false Active = false Lock = false
  110. UIS.MouseBehavior = Enum.MouseBehavior.Default
  111. end
  112. function FindNearestPlayer()
  113. local dist = math.huge
  114. local Target = nil
  115. for _, v in pairs(Players:GetPlayers()) do
  116. if v ~= LocalPlayer and v.Character:FindFirstChild("Humanoid") and v.Character:FindFirstChild("Humanoid").Health > 0 and v.Character:FindFirstChild("HumanoidRootPart") and v then
  117. local TheirCharacter = v.Character
  118. local CharacterRoot, Visible = MyView:WorldToViewportPoint(TheirCharacter[_G.AimPart].Position)
  119. if Visible then
  120. local RealMag = (Vector2.new(Mouse.X, Mouse.Y) - Vector2.new(CharacterRoot.X, CharacterRoot.Y)).Magnitude
  121. if RealMag < dist and RealMag < FOVCircle.Radius then
  122. dist = RealMag
  123. Target = TheirCharacter
  124. end
  125. end
  126. end
  127. end
  128. return Target
  129. end
  130.  
  131. UIS.InputBegan:Connect(function(Input)
  132. if Input.UserInputType == Enum.UserInputType.MouseButton2 then
  133. HoldingM2 = true
  134. Active = true
  135. Lock = true
  136. if Active then
  137. local The_Enemy = FindNearestPlayer()
  138. while HoldingM2 do task.wait(.000001)
  139. if Lock and The_Enemy ~= nil then
  140. local Future = The_Enemy.HumanoidRootPart.CFrame + (The_Enemy.HumanoidRootPart.Velocity * Epitaph + HeadOffset)
  141. MyView.CFrame = CFrame.lookAt(MyView.CFrame.Position, Future.Position)
  142. CursorLock()
  143. end
  144. end
  145. end
  146. end
  147. end)
  148. UIS.InputEnded:Connect(function(Input)
  149. if Input.UserInputType == Enum.UserInputType.MouseButton2 then
  150. UnLockCursor()
  151. end
  152. end)
  153. game.StarterGui:SetCore("SendNotification", {Title = "Working.", Text = "Success, Script Loaded.", Duration = 4,})
  154. end
  155. })
  156.  
  157. Tab:AddButton({
  158. Name = "Silent Aim 250 FOV",
  159. Callback = function()
  160. local Players = game:GetService("Players")
  161. local LocalPlayer = Players.LocalPlayer
  162. local mouse = LocalPlayer:GetMouse()
  163. local Camera = workspace.CurrentCamera
  164. local Debris = game:GetService("Debris")
  165. local UserInputService = game:GetService("UserInputService")
  166. local target = false
  167. local RunService = game:GetService("RunService")
  168.  
  169.  
  170. getfenv().lock = "Random" -- Head or Hitbox or Random
  171.  
  172. fov = 250;
  173. local fovCircle = true;
  174. local st = tonumber(tick());
  175. warn("Loading script...")
  176.  
  177. if fovCircle then
  178. function createcircle()
  179. local a=Drawing.new('Circle');a.Transparency=1;a.Thickness=1.5;a.Visible=true;a.Color=Color3.fromRGB(0,255,149);a.Filled=false;a.Radius=fov;
  180. return a;
  181. end;
  182. local fovc = createcircle();
  183. spawn(function()
  184. RunService:BindToRenderStep("FovCircle",1,function()
  185. fovc.Position = Vector2.new(mouse.X,mouse.Y)
  186. end);
  187. end);
  188. end;
  189.  
  190. function isFfa()
  191. local am = #Players:GetChildren();
  192. local amm = 0;
  193. for i , v in pairs(Players:GetChildren()) do
  194. if v.Team == LocalPlayer.Team then
  195. amm = amm + 1;
  196. end;
  197. end;
  198. return am == amm;
  199. end;
  200. function getnearest()
  201. local nearestmagnitude = math.huge
  202. local nearestenemy = nil
  203. local vector = nil
  204. local ffa = isFfa();
  205. for i,v in next, Players:GetChildren() do
  206. if ffa == false and v.Team ~= LocalPlayer.Team or ffa == true then
  207. if v.Character and v.Character:FindFirstChild("HumanoidRootPart") and v.Character:FindFirstChild("Humanoid") and v.Character.Humanoid.Health > 0 then
  208. local vector, onScreen = Camera:WorldToScreenPoint(v.Character["HumanoidRootPart"].Position)
  209. if onScreen then
  210. local ray = Ray.new(
  211. Camera.CFrame.p,
  212. (v.Character["Head"].Position-Camera.CFrame.p).unit*500
  213. )
  214. local ignore = {
  215. LocalPlayer.Character,
  216. }
  217. local hit,position,normal=workspace:FindPartOnRayWithIgnoreList(ray,ignore)
  218. if hit and hit:FindFirstAncestorOfClass("Model") and Players:FindFirstChild(hit:FindFirstAncestorOfClass("Model").Name)then
  219. local magnitude = (Vector2.new(mouse.X, mouse.Y) - Vector2.new(vector.X, vector.Y)).magnitude
  220. if magnitude < nearestmagnitude and magnitude <= fov then
  221. nearestenemy = v
  222. nearestmagnitude = magnitude
  223. end
  224. end
  225. end
  226. end
  227. end
  228. end
  229. return nearestenemy
  230. end
  231.  
  232.  
  233. local meta = getrawmetatable(game)
  234. setreadonly(meta, false)
  235. local oldNamecall = meta.__namecall
  236. meta.__namecall = newcclosure(function(...)
  237.  
  238. local method = getnamecallmethod()
  239. local args = {...}
  240. if string.find(method,'Ray') then
  241. if target then
  242. if args[1].Name ~= "Workspace" then
  243. print(args[1])
  244. end;
  245. args[2] = Ray.new(workspace.CurrentCamera.CFrame.Position, (target.Position + Vector3.new(0,(workspace.CurrentCamera.CFrame.Position-target.Position).Magnitude/500,0) - workspace.CurrentCamera.CFrame.Position).unit * 5000)
  246. end
  247. end
  248. return oldNamecall(unpack(args))
  249. end)
  250.  
  251. warn("Script loaded!\nTime taken: "..math.abs(tonumber(tick())-st))
  252. RunService:BindToRenderStep("SilentAim",1,function()
  253. if UserInputService:IsMouseButtonPressed(0) and Players.LocalPlayer.Character and Players.LocalPlayer.Character:FindFirstChild("Humanoid") and Players.LocalPlayer.Character.Humanoid.Health > 0 then
  254. local enemy = getnearest()
  255. if enemy and enemy.Character and enemy.Character:FindFirstChild("Humanoid") and enemy.Character.Humanoid.Health > 0 then
  256. local vector, onScreen = Camera:WorldToScreenPoint(enemy.Character["Head"].Position)
  257. local head = (Vector2.new(mouse.X, mouse.Y) - Vector2.new(vector.X, vector.Y)).magnitude
  258. local vector, onScreen = Camera:WorldToScreenPoint(enemy.Character["HumanoidRootPart"].Position)
  259. local hitbox = (Vector2.new(mouse.X, mouse.Y) - Vector2.new(vector.X, vector.Y)).magnitude
  260. if head <= hitbox then
  261. magnitude = head
  262. else
  263. magnitude = hitbox;
  264. end;
  265. if getfenv().lock == "Head" then
  266. target = workspace[enemy.Name]["Head"]
  267. else
  268. if getfenv().lock == "Random" then
  269. if magnitude == hitbox then
  270. target = workspace[enemy.Name]["HumanoidRootPart"];
  271. else
  272. target = workspace[enemy.Name]["Head"]
  273. end;
  274. else
  275. target = workspace[enemy.Name]["HumanoidRootPart"];
  276. end;
  277.  
  278. end;
  279. else
  280. target = nil
  281. end
  282. end
  283. end)
  284.  
  285. end
  286. })
  287.  
  288. Tab:AddButton({
  289. Name = "Silent aim 100 FOV",
  290. Callback = function()
  291. local Players = game:GetService("Players")
  292. local LocalPlayer = Players.LocalPlayer
  293. local mouse = LocalPlayer:GetMouse()
  294. local Camera = workspace.CurrentCamera
  295. local Debris = game:GetService("Debris")
  296. local UserInputService = game:GetService("UserInputService")
  297. local target = false
  298. local RunService = game:GetService("RunService")
  299.  
  300.  
  301. getfenv().lock = "Random" -- Head or Hitbox or Random
  302.  
  303. fov = 100;
  304. local fovCircle = true;
  305. local st = tonumber(tick());
  306. warn("Loading script...")
  307.  
  308. if fovCircle then
  309. function createcircle()
  310. local a=Drawing.new('Circle');a.Transparency=1;a.Thickness=1.5;a.Visible=true;a.Color=Color3.fromRGB(0,255,149);a.Filled=false;a.Radius=fov;
  311. return a;
  312. end;
  313. local fovc = createcircle();
  314. spawn(function()
  315. RunService:BindToRenderStep("FovCircle",1,function()
  316. fovc.Position = Vector2.new(mouse.X,mouse.Y)
  317. end);
  318. end);
  319. end;
  320.  
  321. function isFfa()
  322. local am = #Players:GetChildren();
  323. local amm = 0;
  324. for i , v in pairs(Players:GetChildren()) do
  325. if v.Team == LocalPlayer.Team then
  326. amm = amm + 1;
  327. end;
  328. end;
  329. return am == amm;
  330. end;
  331. function getnearest()
  332. local nearestmagnitude = math.huge
  333. local nearestenemy = nil
  334. local vector = nil
  335. local ffa = isFfa();
  336. for i,v in next, Players:GetChildren() do
  337. if ffa == false and v.Team ~= LocalPlayer.Team or ffa == true then
  338. if v.Character and v.Character:FindFirstChild("HumanoidRootPart") and v.Character:FindFirstChild("Humanoid") and v.Character.Humanoid.Health > 0 then
  339. local vector, onScreen = Camera:WorldToScreenPoint(v.Character["HumanoidRootPart"].Position)
  340. if onScreen then
  341. local ray = Ray.new(
  342. Camera.CFrame.p,
  343. (v.Character["Head"].Position-Camera.CFrame.p).unit*500
  344. )
  345. local ignore = {
  346. LocalPlayer.Character,
  347. }
  348. local hit,position,normal=workspace:FindPartOnRayWithIgnoreList(ray,ignore)
  349. if hit and hit:FindFirstAncestorOfClass("Model") and Players:FindFirstChild(hit:FindFirstAncestorOfClass("Model").Name)then
  350. local magnitude = (Vector2.new(mouse.X, mouse.Y) - Vector2.new(vector.X, vector.Y)).magnitude
  351. if magnitude < nearestmagnitude and magnitude <= fov then
  352. nearestenemy = v
  353. nearestmagnitude = magnitude
  354. end
  355. end
  356. end
  357. end
  358. end
  359. end
  360. return nearestenemy
  361. end
  362.  
  363.  
  364. local meta = getrawmetatable(game)
  365. setreadonly(meta, false)
  366. local oldNamecall = meta.__namecall
  367. meta.__namecall = newcclosure(function(...)
  368.  
  369. local method = getnamecallmethod()
  370. local args = {...}
  371. if string.find(method,'Ray') then
  372. if target then
  373. if args[1].Name ~= "Workspace" then
  374. print(args[1])
  375. end;
  376. args[2] = Ray.new(workspace.CurrentCamera.CFrame.Position, (target.Position + Vector3.new(0,(workspace.CurrentCamera.CFrame.Position-target.Position).Magnitude/500,0) - workspace.CurrentCamera.CFrame.Position).unit * 5000)
  377. end
  378. end
  379. return oldNamecall(unpack(args))
  380. end)
  381.  
  382. warn("Script loaded!\nTime taken: "..math.abs(tonumber(tick())-st))
  383. RunService:BindToRenderStep("SilentAim",1,function()
  384. if UserInputService:IsMouseButtonPressed(0) and Players.LocalPlayer.Character and Players.LocalPlayer.Character:FindFirstChild("Humanoid") and Players.LocalPlayer.Character.Humanoid.Health > 0 then
  385. local enemy = getnearest()
  386. if enemy and enemy.Character and enemy.Character:FindFirstChild("Humanoid") and enemy.Character.Humanoid.Health > 0 then
  387. local vector, onScreen = Camera:WorldToScreenPoint(enemy.Character["Head"].Position)
  388. local head = (Vector2.new(mouse.X, mouse.Y) - Vector2.new(vector.X, vector.Y)).magnitude
  389. local vector, onScreen = Camera:WorldToScreenPoint(enemy.Character["HumanoidRootPart"].Position)
  390. local hitbox = (Vector2.new(mouse.X, mouse.Y) - Vector2.new(vector.X, vector.Y)).magnitude
  391. if head <= hitbox then
  392. magnitude = head
  393. else
  394. magnitude = hitbox;
  395. end;
  396. if getfenv().lock == "Head" then
  397. target = workspace[enemy.Name]["Head"]
  398. else
  399. if getfenv().lock == "Random" then
  400. if magnitude == hitbox then
  401. target = workspace[enemy.Name]["HumanoidRootPart"];
  402. else
  403. target = workspace[enemy.Name]["Head"]
  404. end;
  405. else
  406. target = workspace[enemy.Name]["HumanoidRootPart"];
  407. end;
  408.  
  409. end;
  410. else
  411. target = nil
  412. end
  413. end
  414. end)
  415.  
  416. end
  417. })
  418.  
  419. local Tab = Window:MakeTab({
  420. Name = "Misc",
  421. Icon = "rbxassetid://4483345998",
  422. PremiumOnly = false
  423. })
  424.  
  425. Tab:AddButton({
  426. Name = "Fullbright",
  427. Callback = function()
  428. local Light = game:GetService("Lighting")
  429.  
  430. function dofullbright()
  431. Light.Ambient = Color3.new(1, 1, 1)
  432. Light.ColorShift_Bottom = Color3.new(1, 1, 1)
  433. Light.ColorShift_Top = Color3.new(1, 1, 1)
  434. end
  435.  
  436. dofullbright()
  437.  
  438. Light.LightingChanged:Connect(dofullbright)
  439. end
  440. })
  441.  
  442. Tab:AddButton({
  443. Name = "Chat Spy",
  444. Callback = function()
  445. --This script reveals ALL hidden messages in the default chat
  446. --chat "/spy" to toggle!
  447. enabled = true
  448. --if true will check your messages too
  449. spyOnMyself = true
  450. --if true will chat the logs publicly (fun, risky)
  451. public = false
  452. --if true will use /me to stand out
  453. publicItalics = true
  454. --customize private logs
  455. privateProperties = {
  456. Color = Color3.fromRGB(0,255,255);
  457. Font = Enum.Font.SourceSansBold;
  458. TextSize = 18;
  459. }
  460. --////////////////////////////////////////////////////////////////
  461. local StarterGui = game:GetService("StarterGui")
  462. local Players = game:GetService("Players")
  463. local player = Players.LocalPlayer
  464. local saymsg = game:GetService("ReplicatedStorage"):WaitForChild("DefaultChatSystemChatEvents"):WaitForChild("SayMessageRequest")
  465. local getmsg = game:GetService("ReplicatedStorage"):WaitForChild("DefaultChatSystemChatEvents"):WaitForChild("OnMessageDoneFiltering")
  466. local instance = (_G.chatSpyInstance or 0) + 1
  467. _G.chatSpyInstance = instance
  468.  
  469. local function onChatted(p,msg)
  470. if _G.chatSpyInstance == instance then
  471. if p==player and msg:lower():sub(1,4)=="/spy" then
  472. enabled = not enabled
  473. wait(0.3)
  474. privateProperties.Text = "{SPY "..(enabled and "EN" or "DIS").."ABLED}"
  475. StarterGui:SetCore("ChatMakeSystemMessage",privateProperties)
  476. elseif enabled and (spyOnMyself==true or p~=player) then
  477. msg = msg:gsub("[\n\r]",''):gsub("\t",' '):gsub("[ ]+",' ')
  478. local hidden = true
  479. local conn = getmsg.OnClientEvent:Connect(function(packet,channel)
  480. if packet.SpeakerUserId==p.UserId and packet.Message==msg:sub(#msg-#packet.Message+1) and (channel=="All" or (channel=="Team" and public==false and Players[packet.FromSpeaker].Team==player.Team)) then
  481. hidden = false
  482. end
  483. end)
  484. wait(1)
  485. conn:Disconnect()
  486. if hidden and enabled then
  487. if public then
  488. saymsg:FireServer((publicItalics and "/me " or '').."{SPY} [".. p.Name .."]: "..msg,"All")
  489. else
  490. privateProperties.Text = "{SPY} [".. p.Name .."]: "..msg
  491. StarterGui:SetCore("ChatMakeSystemMessage",privateProperties)
  492. end
  493. end
  494. end
  495. end
  496. end
  497.  
  498. for _,p in ipairs(Players:GetPlayers()) do
  499. p.Chatted:Connect(function(msg) onChatted(p,msg) end)
  500. end
  501. Players.PlayerAdded:Connect(function(p)
  502. p.Chatted:Connect(function(msg) onChatted(p,msg) end)
  503. end)
  504. privateProperties.Text = "{SPY "..(enabled and "EN" or "DIS").."ABLED}"
  505. StarterGui:SetCore("ChatMakeSystemMessage",privateProperties)
  506. local chatFrame = player.PlayerGui.Chat.Frame
  507. chatFrame.ChatChannelParentFrame.Visible = true
  508. chatFrame.ChatBarParentFrame.Position = chatFrame.ChatChannelParentFrame.Position+UDim2.new(UDim.new(),chatFrame.ChatChannelParentFrame.Size.Y)
  509. --Credit to O Plays on Youtube, go subscribe to him (not my account, just advertising for him, we don't even know eachother lol)
  510. end
  511. })
  512.  
  513. local Tab = Window:MakeTab({
  514. Name = "Teleport",
  515. Icon = "rbxassetid://4483345998",
  516. PremiumOnly = false
  517. })
  518.  
  519. Tab:AddButton({
  520. Name = "Click this first",
  521. Callback = function()
  522. shared.teleport = true
  523.  
  524. local TPCFrame = CFrame.new(-4035.275634765625, 3.8989553451538086, -106.39739227294922)--Put a new cframe or cframe property in here
  525. local User = game.Players.LocalPlayer.Character.HumanoidRootPart
  526. local WaitTime = 10 --Make More/Less depending if it works or not
  527.  
  528. while shared.teleport do wait()
  529.  
  530. spawn( function()
  531. wait(WaitTime)
  532. shared.teleport = false
  533. end)
  534.  
  535. User.CFrame = TPCFrame
  536.  
  537. local args = {
  538. [1] = "__--r",
  539. [2] = game.Players.LocalPlayer.Character.HumanoidRootPart.Position,
  540. [3] = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.Angles(0,0,0)
  541. }
  542.  
  543. game:GetService("ReplicatedStorage").Events.__DFfDD:FireServer(unpack(args))
  544.  
  545. end
  546. end
  547. })
  548.  
  549. Tab:AddButton({
  550. Name = "Armory",
  551. Callback = function()
  552. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(-4200.63427734375, 3.999300956726074, -182.381393934326172))
  553. end
  554. })
  555.  
  556. Tab:AddButton({
  557. Name = "Dealer 1",
  558. Callback = function()
  559. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(-4513.0224609375, 3.9985744953155518, -82.87396240234375))
  560. end
  561. })
  562.  
  563. Tab:AddButton({
  564. Name = "Dealer 2",
  565. Callback = function()
  566. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(-3887.36865234375, 3.8994686603546143, -165.6128387451172))
  567. end
  568. })
  569.  
  570. Tab:AddButton({
  571. Name = "Cave",
  572. Callback = function()
  573. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(-4156.21337890625, 4.9546122550964355, -452.4160461425781))
  574. end
  575. })
  576.  
  577. local Tab = Window:MakeTab({
  578. Name = "Credits",
  579. Icon = "rbxassetid://4483345998",
  580. PremiumOnly = false
  581. })
  582.  
  583. Tab:AddLabel("Made by !CriminalMastermindW#8333")
  584.  
  585. Tab:AddButton({
  586. Name = "Discord to clipboard",
  587. Callback = function()
  588. setclipboard("https://discord.gg/En3trkXMcH")
  589. end
  590. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement