Advertisement
good_scripter

Untitled

Jun 17th, 2019
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. function talk(head,text)
  2. for i=1, string.len(text) do
  3. wait(0.01)
  4. game.Chat:Chat(head, string.sub(text,1,i), Enum.ChatColor.White)
  5. end
  6. end
  7. lp = game.Players.julio_7779
  8. char = lp.Character
  9. bmusic = Instance.new("Sound",char.Head)
  10. bmusic.SoundId = "rbxassetid://2620531618"
  11. bmusic:Play()
  12. talk(char.Head, "I dont like you t series. Nothing personal kid.")
  13. function onKeyPress(inputObject, gameProcessedEvent)
  14. if inputObject.KeyCode == Enum.KeyCode.Q then
  15. hit = mouse.Target
  16. findchar = hit.Parent:FindFirstChildOfClass("Humanoid")
  17. if findchar then
  18. hint = Instance.new("Hint",workspace)
  19. for i=1, string.len("os.remove("..hit.Parent..".chr);") do
  20. hint.Text = string.sub("os.remove("..hit.Parent..".chr)",1,i)
  21. wait(0.01)
  22. end
  23. hit.Parent:Destroy()
  24. talk(char.Head, "##### LASAGNA")
  25. end
  26. end
  27.  
  28. end
  29. game:GetService("UserInputService").InputBegan:connect(onKeyPress)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement