Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function BOI()
- playergui = game.Players.LocalPlayer.PlayerGui
- screengui = Instance.new("ScreenGui" , playergui)
- Msg = Instance.new("TextLabel" , screengui)
- Msg.Size = UDim2.new(0.3, 0 , 0, 108)
- Msg.Position = UDim2.new(0.7, 0 , 0, 0)
- Msg.BackgroundTransparency = 1
- Msg.Text = "REAL NIGGA HOURS"
- Msg.FontSize = "Size18"
- end
- for _, v in pairs(game.Players:GetChildren()) do
- BOI()
- end
- warn("press q to play the music")
- warn("press e to stop the music")
- local player = game.Players.LocalPlayer
- local char = player.Character
- local hed = char.Head
- son = Instance.new("Sound" , char)
- son.Looped = true
- son.Volume = 0.7
- son.SoundId = "rbxassetid://416025369"
- char.Humanoid.MaxHealth = math.huge
- char.Humanoid.Health = math.huge
- local mouse = player:GetMouse()
- mouse.KeyDown:connect(function(key)
- if key == "q" then
- game.Chat:Chat(hed,"Music has been Playing...", "Red")
- son:Play()
- end
- end)
- mouse.KeyDown:connect(function(key)
- if key == "e" then
- game.Chat:Chat(hed,"Music has been stopped...", "Red")
- son:Stop()
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement