Advertisement
vtrvsted

godly

Sep 16th, 2022
663
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.46 KB | None | 0 0
  1. -- Toggle key is Q
  2. getgenv().Target = true
  3. -- Configuration
  4. getgenv().Key = Enum.KeyCode.Q
  5. getgenv().Prediction = 0.130340
  6. getgenv().ChatMode = false
  7. getgenv().NotifMode = true
  8.     getgenv().PartMode = true
  9.     getgenv().AirshotFunccc = true
  10.     getgenv().Partz = "LowerTorso"
  11. getgenv().AutoPrediction = false
  12. --
  13.     _G.Types = {
  14.         Ball = Enum.PartType.Ball,
  15.         Block = Enum.PartType.Block,
  16.         Cylinder = Enum.PartType.Cylinder
  17.     }
  18.    
  19.     --variables                
  20.         local Tracer = Instance.new("Part", game.Workspace)
  21.     Tracer.Name = "gay"
  22.     Tracer.Anchored = true      
  23.     Tracer.CanCollide = false
  24.     Tracer.Transparency = 0.8
  25.     Tracer.Parent = game.Workspace  
  26.     Tracer.Shape = _G.Types.Block
  27.     Tracer.Size = Vector3.new(14,14,14)
  28.     Tracer.Color = Color3.fromRGB(16,0,22)
  29.    
  30.     --
  31.     local plr = game.Players.LocalPlayer
  32. local mouse = plr:GetMouse()
  33. local Runserv = game:GetService("RunService")
  34.  
  35. circle = Drawing.new("Circle")
  36. circle.Color = Color3.fromRGB(255,255,255)
  37. circle.Thickness = 0
  38. circle.NumSides = 732
  39. circle.Radius = 732
  40. circle.Thickness = 0
  41. circle.Transparency = 0.9
  42. circle.Visible = false
  43. circle.Filled = false
  44.  
  45.  
  46. Runserv.RenderStepped:Connect(function()
  47.     circle.Position = Vector2.new(mouse.X,mouse.Y+35)
  48. end)
  49.    
  50.         local guimain = Instance.new("Folder", game.CoreGui)
  51.         local CC = game:GetService"Workspace".CurrentCamera
  52.     local LocalMouse = game.Players.LocalPlayer:GetMouse()
  53.         local Locking = false
  54.    
  55.        
  56.     --
  57.     if getgenv().valiansh == true then
  58.                         game.StarterGui:SetCore("SendNotification", {
  59.                         Title    = " <3 Chloe <37316's lock",
  60.                         Text     = "loaded",
  61.                         Duration = 1
  62.        
  63.                    })
  64.         return
  65.     end
  66.    
  67.     getgenv().valiansh = true
  68.    
  69.         local UserInputService = game:GetService("UserInputService")
  70.  
  71.     UserInputService.InputBegan:Connect(function(keygo,ok)
  72.            if (not ok) then
  73.            if (keygo.KeyCode == getgenv().Key) then
  74.                if getgenv().Target == true then
  75.                Locking = not Locking
  76.                
  77.                if Locking then
  78.                Plr =  getClosestPlayerToCursor()
  79.                 if getgenv().ChatMode then
  80.         local A_1 = "Target: "..tostring(Plr.Character.Humanoid.DisplayName) local A_2 = "All" local Event = game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest Event:FireServer(A_1, A_2)
  81.             end
  82.                if getgenv().NotifMode then
  83.                 game.StarterGui:SetCore("SendNotification", {
  84.         Title = "<3 Chloe <3#7316's Lock";
  85.         Text = "Target: "..tostring(Plr.Character.Humanoid.DisplayName);
  86.    
  87.     })
  88.     end
  89.     elseif not Locking then
  90.          if getgenv().ChatMode then
  91.         local A_1 = "Unlocked!" local A_2 = "All" local Event = game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest Event:FireServer(A_1, A_2)
  92.             end
  93.         if getgenv().NotifMode then
  94.                         game.StarterGui:SetCore("SendNotification", {
  95.                         Title    = " <3 Chloe <3#7316's Lock",
  96.                         Text     = "unlocked",
  97.                         Duration = 1
  98.                })
  99.            elseif getgenv().Target == false then
  100.                         game.StarterGui:SetCore("SendNotification", {
  101. ... (101 lines left)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement