idkllal

test2

Aug 9th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.24 KB | None | 0 0
  1. wait(2)
  2. print("Anti death script has been loaded!!")
  3. print("Made by **Cacti with mustache**#7663 in discord")
  4.  
  5. ----------------------------------------------- variables
  6. local playerlocal = game.Players.LocalPlayer ---- dont touch unless you know what you are doing
  7. local char = workspace:FindFirstChild(playerlocal.Name) ---- dont touch unless you know what you are doing
  8. local looped = true ---- DONT TOUCH WİLL BREAK SCRİPT
  9. local playername = playerlocal.Name --- playername because whynot
  10. local waittime = 5 --- how fast it detects if you are dead or not Dont have this under 1 or the game will lag
  11. local BillboardGui = Instance.new("BillboardGui")
  12. local TextLabel = Instance.new("TextLabel")
  13. local hmj = playerlocal:GetMouse()
  14. ----------------------------------------------- variables
  15.  
  16.  
  17.  
  18.  
  19.  
  20. -----------------------------------------------Script
  21. BillboardGui.Parent = char.Head
  22. BillboardGui.Adornee = char.Head
  23. BillboardGui.AlwaysOnTop = true
  24. BillboardGui.MaxDistance = 22
  25. BillboardGui.Size = UDim2.new(0, 200, 0, 50)
  26. BillboardGui.StudsOffset = Vector3.new(0, 2, 0)
  27. TextLabel.Parent = BillboardGui
  28. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  29. TextLabel.BackgroundTransparency = 1
  30. TextLabel.Size = UDim2.new(1, 0, 1, 0)
  31. TextLabel.Font = Enum.Font.SourceSans
  32. TextLabel.Text = "Anti Abuse Script by**Cacti with mustache**#7663"
  33. TextLabel.TextColor3 = Color3.new(0.109804, 0.960784, 0.862745)
  34. TextLabel.TextScaled = true
  35. TextLabel.TextSize = 3
  36. TextLabel.TextStrokeColor3 = Color3.new(0.0666667, 1, 0)
  37. TextLabel.TextStrokeTransparency = 0.40099999308586
  38. TextLabel.TextTransparency = 0.40000000596046
  39. TextLabel.TextWrapped = true
  40.  
  41. local randominch = math.random(1,4)
  42. while looped == true do
  43. hmj.Button1Down:connect(function()
  44. print("Button 1 is down")
  45. wait(2)
  46. local killbeam = Instance.new("Explosion",hmj.Target)
  47. killbeam.ExplosionType = Enum.ExplosionType.CratersAndDebris
  48. killbeam.Position = hmj.Hit
  49. wait(waittime)
  50. char.Humanoid.Died:Connect(function(Localdied)
  51.  
  52. print("GG anti Abuse")
  53. for i,v in pairs(workspace:GetChildren()) do
  54. if v.ClassName == "Model" then
  55. local randomch = math.random(1,10)
  56. if randomch == 1 or 2 or 3 or 4 then
  57. v:BreakJoints()
  58. end
  59.  
  60. end
  61.  
  62. end
  63. end)
  64.  
  65.  
  66. end)
  67. end
Add Comment
Please, Sign In to add comment