Advertisement
vtrvsted

kitten assist

Sep 16th, 2022
536
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.61 KB | None | 0 0
  1. getgenv().SilentAimbotKey = 'c'; getgenv().AimlockKey = 'q';  _G.WEBHOOK_URL = '';
  2.  
  3. _G.PART = "UpperTorso"
  4. _G.PART2 = "UpperTorso"
  5. _G.PRED = 0.037
  6. _G.Frame = Vector3.new(0,0.53,0)
  7. _G.AIR = 0.000005
  8. _G.SHIT = 1
  9.  
  10. local CC = game:GetService "Workspace".CurrentCamera
  11. local Plr
  12. local enabled = false
  13. local accomidationfactor = nil
  14. local mouse = game.Players.LocalPlayer:GetMouse()
  15. local placemarker = Instance.new("Part", game.Workspace)
  16. local guimain = Instance.new("Folder", game.CoreGui)
  17.  
  18. getgenv().makemarker = function(Parent, Adornee, Color, Size, Size2)
  19.     local e = Instance.new("BillboardGui", Parent)
  20.     e.Name = "epicgamershits"
  21.     e.Adornee = Adornee
  22.     e.Size = UDim2.new(Size, Size2, Size, Size2)
  23.     e.AlwaysOnTop = true
  24.     local a = Instance.new("Frame", e)
  25.     a.Size = UDim2.new(4, 0, 4, 0)
  26.     a.BackgroundTransparency = 1
  27.     a.BackgroundColor3 = Color
  28.     local g = Instance.new("UICorner", a)
  29.     g.CornerRadius = UDim.new(50, 50)
  30.     return (e)
  31. end
  32.  
  33. local data = game.Players:GetPlayers()
  34. function noob(player)
  35.     local character
  36.     repeat
  37.         wait()
  38.     until player.Character
  39.     local handler = makemarker(guimain, player.Character:WaitForChild(_G.PART), Color3.fromRGB(255, 255, 255), 0.0, 0)
  40.     handler.Name = player.Name
  41.     player.CharacterAdded:connect(
  42.         function(Char)
  43.             handler.Adornee = Char:WaitForChild(_G.PART)
  44.         end
  45.     )
  46.  
  47.     local TextLabel = Instance.new("TextLabel", handler)
  48.     TextLabel.BackgroundTransparency = 1
  49.     TextLabel.Position = UDim2.new(0, 0, 0, -50)
  50.     TextLabel.Size = UDim2.new(0, 100, 0, 100)
  51.     TextLabel.Font = Enum.Font.SourceSansSemibold
  52.     TextLabel.TextSize = 14
  53.     TextLabel.TextColor3 = Color3.new(1, 1, 1)
  54.     TextLabel.TextStrokeTransparency = 0
  55.     TextLabel.TextYAlignment = Enum.TextYAlignment.Bottom
  56.     TextLabel.Text = "Name: " .. player.Name
  57.     TextLabel.ZIndex = 10
  58.  
  59. end
  60.  
  61. for i = 1, #data do
  62.     if data[i] ~= game.Players.LocalPlayer then
  63.         noob(data[i])
  64.     end
  65. end
  66.  
  67. game.Players.PlayerAdded:connect(
  68.     function(Player)
  69.         noob(Player)
  70.     end
  71. )
  72.  
  73. game.Players.PlayerRemoving:Connect(
  74.     function(player)
  75.         guimain[player.Name]:Destroy()
  76.     end
  77. )
  78.  
  79. spawn(
  80.     function()
  81.         placemarker.Anchored = true
  82.         placemarker.CanCollide = false
  83.         placemarker.Size = Vector3.new(0.1, 0.1, 0.1)
  84.         placemarker.Transparency = _G.SHIT
  85.         makemarker(placemarker, placemarker, Color3.fromRGB(255, 255, 255), 0.20, 0)
  86.     end
  87. )
  88.  
  89. getgenv().Targett = ""
  90.  
  91. mouse.KeyDown:Connect(
  92.     function(k)
  93.         if k ~= getgenv().SilentAimbotKey then
  94.             return
  95.         end
  96.         if enabled then
  97.             -- guimain[Plr.Name].Frame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  98.             enabled = false
  99.             if getgenv().NotifMode == true then
  100.  
  101. ... (63 KB left)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement