Advertisement
RobloxScripter123

no u

Jul 18th, 2018
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.40 KB | None | 0 0
  1. print("This is the Social Justice Warrior script.")
  2. print("Script was made by Mr_Unlucky. Leak if you want, I don't play SB as often as I used to")
  3. print("CONTROLS")
  4. print("CHECK YOUR PRIVILEGE! - Q")
  5. print("TRIGGERED - E")
  6.  
  7. --//Variables\\--
  8.  
  9. local Player = game:GetService("Players").LocalPlayer
  10. local Character = Player.Character
  11. local Head = Character["Head"]
  12. local LeftArm = Character["Left Arm"]
  13. local LeftLeg = Character["Left Leg"]
  14. local RightArm = Character["Right Arm"]
  15. local RightLeg = Character["Right Leg"]
  16. local Torso = Character["Torso"]
  17. local Humanoid = Character["Humanoid"]
  18.  
  19. local Damage = 30
  20. local Attacking = false
  21.  
  22. local MR = math.random
  23. local I = Instance.new
  24. local CF = CFrame.new
  25. local U2 = UDim2.new
  26. local V3 = Vector3.new
  27.  
  28. --//Stuff\\--
  29.  
  30. Humanoid.MaxHealth = math.huge
  31. Humanoid.Health = math.huge
  32. Humanoid.Name = ""
  33.  
  34. local Board = I("BillboardGui",Head)
  35. local Label = I("TextLabel",Board)
  36. Label.BackgroundTransparency = 1
  37. Label.Position = UDim2.new(0,0,0,-49)
  38. Label.TextColor3 = Color3.fromRGB(255,255,255)
  39. Label.TextStrokeTransparency = 0
  40. Label.Text = "SOCIAL JUSTICE WARRIOR"
  41. Label.Font = "Fantasy"
  42. Label.TextScaled = true
  43. Board.AlwaysOnTop = true
  44. Board.Size = UDim2.new(0,200,0,50)
  45. Label.Size = UDim2.new(0,200,0,50)
  46.  
  47. --//Attacks\\--
  48.  
  49. function Privilege()
  50. Label.Text = "MAYBE YOU SHOULD CHECK YOUR PRIVILEGE!!!"
  51. Attacking = true
  52. local Woosh = I("Part",workspace)
  53. local Mesh = I("SpecialMesh",Woosh)
  54. Mesh.MeshId = "rbxassetid://471124075"
  55. Mesh.Scale = V3(0.05,0.05,0.05)
  56. Mesh.MeshType = "FileMesh"
  57. Woosh.CanCollide = false
  58. Woosh.Position = Torso.Position
  59. for i = 30,0,-1 do
  60. wait(0.1)
  61. Mesh.Scale = Mesh.Scale * 3
  62. Woosh.Transparency = Woosh.Transparency - 5
  63. Woosh.Touched:Connect(function(hit)
  64. if hit and hit.Parent.Name == not Player.Name and hit:FindFirstChildOfClass("Humanoid") then
  65. hit:FindFirstChildOfClass("Humanoid"):TakeDamage(100)
  66. end
  67. end)
  68. end
  69. Woosh:Destroy()
  70. Label.Text = "SOCIAL JUSTICE WARRIOR"
  71. end
  72.  
  73. function Triggered()
  74. Attacking = true
  75. Label.Text = "TRIGGERED"
  76. local TriggeredSound = I("Sound",workspace)
  77. TriggeredSound.SoundId = "rbxassetid://572840337"
  78. TriggeredSound:Play()
  79. for _,v in pairs(game.Players:GetChildren()) do
  80. if v.Name == not Player.Name then
  81. v.Character:FindFirstChildOfClass("Humanoid").WalkSpeed = 0
  82. v.Character:FindFirstChildOfClass("Humanoid").JumpPower = 0
  83. for i = 30,0,-1 do
  84. wait(0.1)
  85. v.Character:FindFirstChildOfClass("Humanoid").Health = v.Character:FindFirstChildOfClass("Humanoid").Health - 10
  86. end
  87. wait(5)
  88. v.Character:FindFirstChildOfClass("Humanoid").WalkSpeed = 16 -- Sets it back to standard walkspeed and jump power
  89. v.Character:FindFirstChildOfClass("Humanoid").JumpPower = 50
  90. end
  91. end
  92. Attacking = false
  93. Label.Text = "SOCIAL JUSTICE WARRIOR"
  94. end
  95.  
  96. function onKeyPress(inputObject, gameProcessedEvent)
  97. if inputObject.KeyCode == Enum.KeyCode.E and Attacking == false then
  98. Triggered()
  99. elseif inputObject.KeyCode == Enum.KeyCode.Q and Attacking == false then
  100. Privilege()
  101. end
  102. end
  103.  
  104. --//FINAL TOUCHES\\--
  105.  
  106. Label.Text = "I HAVE LEARNED THE WAYS OF THE SOCIAL JUSTICE WARRIOR."
  107. wait(2)
  108. Label.Text = "FIGHT ME IN AN ARGUMENT IF YOU DARE..."
  109. wait(2)
  110. Label.Text = "AND PERISH UNDER MY WORDS OF SELF RIGHTEOUSNESS.."
  111. wait(2)
  112. Label.Text = "SOCIAL JUSTICE WARRIOR"
  113.  
  114.  
  115.  
  116. game:GetService("UserInputService").InputBegan:connect(onKeyPress)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement