Advertisement
FireyScripter

REAL NIGGA HOURS (LOCALSCRIPT)

Oct 29th, 2016
325
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.05 KB | None | 0 0
  1. function BOI()
  2.     playergui = game.Players.LocalPlayer.PlayerGui
  3.     screengui = Instance.new("ScreenGui" , playergui)
  4.     Msg = Instance.new("TextLabel" , screengui)
  5.     Msg.Size = UDim2.new(0.3, 0 , 0, 108)
  6.     Msg.Position = UDim2.new(0.7, 0 , 0, 0)
  7.     Msg.BackgroundTransparency = 1
  8.     Msg.Text = "REAL NIGGA HOURS"
  9.     Msg.FontSize = "Size18"
  10. end
  11.  
  12.  
  13. for _, v in pairs(game.Players:GetChildren()) do
  14.     BOI()
  15. end
  16.  
  17.  
  18. warn("press q to play the music")
  19. warn("press e to stop the music")
  20.  
  21. local player = game.Players.LocalPlayer
  22. local char = player.Character
  23. local hed = char.Head
  24. son = Instance.new("Sound" , char)
  25. son.Looped = true
  26. son.Volume = 0.7
  27. son.SoundId = "rbxassetid://416025369"
  28. char.Humanoid.MaxHealth = math.huge
  29. char.Humanoid.Health = math.huge
  30. local mouse = player:GetMouse()
  31. mouse.KeyDown:connect(function(key)
  32.     if key == "q" then
  33.         game.Chat:Chat(hed,"Music has been Playing...", "Red")
  34.         son:Play()
  35.     end
  36. end)
  37.  
  38. mouse.KeyDown:connect(function(key)
  39.     if key == "e" then
  40.         game.Chat:Chat(hed,"Music has been stopped...", "Red")
  41.         son:Stop()
  42.     end
  43. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement