JuicyPenguin

Succ Script

Feb 3rd, 2017
237
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.62 KB | None | 0 0
  1. --succ. (By Rufus14)
  2. wait(1)
  3. gui = Instance.new("ScreenGui", game.Players.LocalPlayer.PlayerGui)
  4. wait(1)
  5. text = Instance.new("TextButton", game.Players.LocalPlayer.PlayerGui.ScreenGui)
  6. text.Text = "Click for succ."
  7. text.Size = UDim2.new(0,200, 0,80)
  8. text.Position = UDim2.new(0,0, 0,300)
  9. function succ()
  10.      local lele = Instance.new("Sound", game.Players.LocalPlayer.Character.Head)
  11.      lele.SoundId = "http://roblox.com/asset?id=437928192"
  12.      lele.Volume = 1
  13.      lele.EmitterSize = 1000
  14.      lele:Play()
  15.      game.Chat:Chat(game.Players.LocalPlayer.Character.Head, "SUCC.", "Red")
  16. end
  17. text.MouseButton1Click:connect(succ)
Add Comment
Please, Sign In to add comment