Advertisement
memberhero

NOOT NOOT button

Dec 6th, 2017
863
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.21 KB | None | 0 0
  1. -- Objects
  2. --NOOT NOOT remade by basstracker1970 not abusive to avoid people abuseing
  3. wait(1)
  4. local NOOOT = Instance.new("ScreenGui")
  5. local TextButton = Instance.new("TextButton")
  6.  
  7. -- Properties
  8.  
  9. NOOOT.Name = "NOOOT"
  10. NOOOT.Parent = game.Players.LocalPlayer.PlayerGui
  11.  
  12. TextButton.Parent = NOOOT
  13. TextButton.BackgroundColor3 = Color3.new(0, 0, 0)
  14. TextButton.Position = UDim2.new(0.808314085, 0, 0.676056325, 0)
  15. TextButton.Size = UDim2.new(0, 166, 0, 50)
  16. TextButton.Font = Enum.Font.SourceSans
  17. TextButton.FontSize = Enum.FontSize.Size14
  18. TextButton.Text = "NOOT NOOT"
  19. TextButton.TextColor3 = Color3.new(1, 1, 1)
  20. TextButton.TextScaled = true
  21. TextButton.TextSize = 14
  22. TextButton.TextWrapped = true
  23. TextButton.MouseButton1Down:connect(function()
  24. message = Instance.new("Message")
  25. message.Text = "NOOT NOOT!!"
  26. message.Parent = game.Workspace
  27. sound = Instance.new("Sound")
  28. sound.SoundId = "rbxassetid://689162300"
  29. sound.Parent = game.Workspace
  30. sound:Play()
  31. decal = Instance.new("Decal")
  32. decal.Texture = "rbxassetid://255422283"
  33. decal.Face = "Top"
  34. decal.Parent = game.Workspace.Baseplate
  35. explode = Instance.new("Explosion")
  36. for i,v in next, game.Players:GetChildren() do
  37. explode.Parent = v.Character.Torso
  38. end
  39. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement