Advertisement
Diep8328Paster

Untitled

May 15th, 2018
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 KB | None | 0 0
  1. -- Made by SLIVER9230
  2. -- Edited with GUI to LUA
  3.  
  4. -- Objects
  5. local p = game.Players.LocalPlayer
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local TextButton = Instance.new("TextButton")
  8.  
  9. -- Properties
  10.  
  11. ScreenGui.Parent = p.PlayerGui
  12.  
  13. TextButton.Parent = ScreenGui
  14. TextButton.BackgroundColor3 = Color3.new(0, 0, 0)
  15. TextButton.Position = UDim2.new(0.841089666, 0, 0.855203629, 0)
  16. TextButton.Size = UDim2.new(0, 109, 0, 22)
  17. TextButton.Text = "Noot Noot"
  18. TextButton.Font = Enum.Font.SourceSansBold
  19. TextButton.TextColor3 = Color3.new(1, 1, 1)
  20. TextButton.TextSize = 20
  21.  
  22. -- Scripts
  23.  
  24. TextButton.MouseButton1Down:connect(function()
  25. local snd = Instance.new("Sound",workspace)
  26. snd.SoundId = "rbxassetid://281136047"
  27. snd.Volume = 100
  28. snd:Play()
  29. wait(9.5)
  30. local noot = Instance.new("Message",workspace)
  31. noot.Text = "noot noot you bacon hair bozos"
  32. local he = Instance.new("ParticleEmitter",game.Workspace.Base) -- noot
  33. he.Speed = NumberRange.new(10)
  34. he.Rate = 3000
  35. he.EmissionDirection = "Top"
  36. he.Size = NumberSequence.new(190)
  37. he.Texture = "http://www.roblox.com/asset/?id=636190114"
  38. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement