Advertisement
zayzaaa2030

Untitled

Jul 23rd, 2022
12
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.78 KB | None | 0 0
  1. --notif--
  2. local function callback(Text)
  3. if Text == "Ok" then
  4. print ("")
  5. elseif Text == ("") then
  6. print ("")
  7. end
  8. end
  9.  
  10. local NotificationBindable = Instance.new("BindableFunction")
  11. NotificationBindable.OnInvoke = callback
  12. --
  13. game.StarterGui:SetCore("SendNotification", {
  14. Title = "remake lock for prison remake credits 2 who ever made it lol";
  15. Text = "idk and idc lmao";
  16. Icon = "";
  17. Duration = 5;
  18. Button1 = "Ok";
  19. Button2 = "";
  20. Callback = NotificationBindable;
  21. })
  22.  
  23. --second notif--
  24. local function callback(Text)
  25. if Text == "Ok" then
  26. print ("")
  27. elseif Text == ("") then
  28. print ("")
  29. end
  30. end
  31.  
  32. local NotificationBindable = Instance.new("BindableFunction")
  33. NotificationBindable.OnInvoke = callback
  34. --
  35. game.StarterGui:SetCore("SendNotification", {
  36. Title = "Enjoy";
  37. Text = "enjoy locking on faggos";
  38. Icon = "";
  39. Duration = 5;
  40. Button1 = "Ok";
  41. Button2 = "";
  42. Callback = NotificationBindable;
  43. })
  44.  
  45. local Aimbot = Instance.new("ScreenGui")
  46. local TextLabel = Instance.new("TextLabel")
  47.  
  48. local Mouse = game.Players.LocalPlayer:GetMouse()
  49.  
  50. holdx = false
  51.  
  52. Aimbot.Name = "Aimbot"
  53. Aimbot.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  54. Aimbot.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  55. Aimbot.ResetOnSpawn = false
  56.  
  57. TextLabel.Parent = Aimbot
  58. TextLabel.BackgroundColor3 = Color3.new(0.444511, 0.771695, 0.998947)
  59. TextLabel.BorderColor3 = Color3.new(0.39057, 0.39057, 0.39057)
  60. TextLabel.BorderSizePixel = 2
  61. TextLabel.Position = UDim2.new(0.75, 0, 0.75, 0)
  62. TextLabel.Size = UDim2.new(0, 132, 0, 50)
  63. TextLabel.Font = Enum.Font.Code
  64. TextLabel.Text = "Target: Nil"
  65. TextLabel.TextColor3 = Color3.new(0.19266, 0.192645, 0.192645)
  66. TextLabel.TextScaled = false
  67. TextLabel.TextSize = 15
  68. TextLabel.TextWrapped = true
  69. TextLabel.BackgroundTransparency = 1
  70.  
  71.  
  72. Mouse.KeyDown:Connect(function(key)
  73. if key == "x" then
  74. if Mouse.Target.Parent:FindFirstChild("Humanoid") then
  75. TextLabel.Text = Mouse.Target.Parent.Name
  76. end
  77. if Mouse.Target.Parent:IsA("Accessory") then
  78. TextLabel.Text = Mouse.Target.Parent.Parent.Name
  79. end
  80. end
  81. end)
  82.  
  83. Mouse.KeyDown:Connect(function(key)
  84. if key == "e" then
  85. holdx = true
  86. while holdx do
  87. game.Players.LocalPlayer.Character:FindFirstChildOfClass("Tool").Shoot:FireServer(game.Players:FindFirstChild(TextLabel.Text).Character.Torso.CFrame+game.Players:FindFirstChild(TextLabel.Text).Character.Torso.Velocity/6.3)
  88. wait(0.01)
  89. end
  90. end
  91. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement