Advertisement
NxtB

Wild Revolvers kill all

Dec 7th, 2021
1,409
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.35 KB | None | 0 0
  1. local Players = game:GetService("Players")
  2. local ReplicatedStorage = game:GetService("ReplicatedStorage")
  3. local UserInputService = game:GetService("UserInputService")
  4. local RunService = game:GetService("RunService")
  5.  
  6. local LocalPlayer = Players.LocalPlayer
  7.  
  8. local PlayerData = LocalPlayer.Data.Value
  9.  
  10. getgenv().Enabled = true
  11.  
  12. UserInputService.InputBegan:Connect(function(Input, GPE)
  13. if not GPE then
  14. if Input.KeyCode == Enum.KeyCode.RightShift then
  15. Enabled = false
  16. end
  17. end
  18. end)
  19.  
  20.  
  21. while true do
  22. for _, Player in next, Players:GetPlayers() do
  23. if Player ~= LocalPlayer then
  24. if Player.Character and Player.Character:FindFirstChild("HumanoidRootPart") and Player.Character:FindFirstChild("Head") and Player.Character.Head.HeadTag.Label.TextColor3 ~= Color3.new(0, 255, 0) then
  25. local Tool = Player.Character:FindFirstChildOfClass("Tool")
  26. if Tool then
  27. ReplicatedStorage.RemoteEvents.OnGunFiredServer:FireServer({
  28. Normal = Vector3.new(0, 0, 0),
  29. HitPart = Player.Character.HumanoidRootPart,
  30. HitPosition = Player.Character.HumanoidRootPart.Position
  31. })
  32. wait(1)
  33. end
  34. end
  35. end
  36. end
  37. RunService.RenderStepped:Wait()
  38. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement