Advertisement
Runixer

Untitled

Jul 17th, 2019
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. --[[
  2.  
  3. Uctron's FE PM Spam
  4.  
  5. Change the message to whatever you want.
  6. Wait_Time can be anything .35 and over. Anything under .35 will give you message errors.
  7.  
  8. Reset to stop the FE PM spamming.
  9.  
  10. ]]
  11.  
  12. Message = "HAIL UCTRON"
  13. Wait_Time = .35
  14.  
  15. repeat game:GetService("RunService").RenderStepped:Wait()
  16. for i=1,game.Players.NumPlayers do
  17. if game.Players:GetChildren()[0+1*i].Name == game.Players.LocalPlayer.Name then
  18. else
  19. game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer("/w "..game.Players:GetChildren()[0+1*i].Name.." "..Message,"All")
  20. wait(Wait_Time)
  21. end
  22. end
  23. until game.Players.LocalPlayer.Character.Humanoid.Health == 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement