Advertisement
avigeo

Untitled

May 31st, 2018
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. local sound = Instance.new("Sound", game.Workspace)
  2. sound.SoundId = "http://www.roblox.com/asset/?id=327953600"
  3. sound:Play()
  4. sound.Volume = 10
  5.  
  6. local plr = game.Players.LocalPlayer
  7. local char = plr.Character
  8. local mouse = plr:GetMouse()
  9. local UIS = game:GetService("UserInputService")
  10.  
  11. --Overhead Gui made by Avigeo
  12.  
  13. wait(1)
  14. local plr = game.Players.LocalPlayer
  15. local char = plr.Character
  16. local head = char.Head
  17. local gui = Instance.new("BillboardGui", head)
  18. gui.StudsOffset = Vector3.new(0,2,0)
  19. gui.Size = UDim2.new(100,0,100,0)
  20. local text = Instance.new("TextLabel", gui)
  21. text.Size = UDim2.new(1,0,1,0)
  22. text.Font = "Legacy"
  23. text.FontSize = 14
  24. text.BackgroundTransparency = 1
  25. text.BorderSizePixel = 1
  26. text.Text = "WII IS GOOD"
  27. text.TextColor3 = Color3.new(255,0,0)
  28.  
  29.  
  30. UIS.InputBegan:Connect(function(Input)
  31. if Input.KeyCode == Enum.KeyCode.P then
  32. sound.Volume = sound.Volume - 1
  33. elseif Input.KeyCode == Enum.KeyCode.O then
  34. sound.Volume = sound.Volume + 1
  35. end
  36. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement