Advertisement
Guest User

ROBLOX | DDLC Monika Script [V.1]

a guest
Dec 27th, 2017
681
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.91 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.LocalPlayer
  8. char = lp.Character
  9. bmusic = Instance.new("Sound",char.Head)
  10. bmusic.SoundId = "rbxassetid://1237751026"
  11. bmusic:Play()
  12. talk(char.Head, "Let's have some FUN!")
  13. function onKeyPress(inputObject, gameProcessedEvent)
  14.     if inputObject.KeyCode == Enum.KeyCode.Q then
  15.         mouse = lp:GetMouse()
  16.         hit = mouse.Target
  17.         findchar = hit.Parent:FindFirstChildOfClass("Humanoid")
  18.         if findchar then
  19.         hint = Instance.new("Hint",workspace)
  20.         for i=1, string.len("os.remove("..hit.Parent..".chr);") do
  21.             hint.Text = string.sub("os.remove("..hit.Parent..".chr)",1,i)
  22.             wait(0.01)
  23.         end
  24.         hit.Parent:Destroy()
  25.         talk(char.Head, "Uh oh, looks like someone just got deleted!")
  26.     end
  27. end
  28.  
  29. game:GetService("UserInputService").InputBegan:connect(onKeyPress)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement