Advertisement
HOJcracker

Untitled

Dec 5th, 2016
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.60 KB | None | 0 0
  1. --meme script brought to you by crashedsoul--
  2. Memes = {
  3. 47594659,
  4. 342697845,
  5. 74142203,
  6. 60298055,
  7. 48989071,
  8. 63175216,
  9. 63186465,
  10. 45120559,
  11. 62079221,
  12. 48258623,
  13. 62677682,
  14. 63174888,
  15. 47595647,
  16. 62830600,
  17. 53646377,
  18. 62677045,
  19. 48260066,
  20. 47596170,
  21. 48293007,
  22. 53645378,
  23. 48290678,
  24. 53646388,
  25. 45031979,
  26. 74885351,
  27. 278201073,
  28. }
  29. Player = game.Players.DARKSPIRIT678
  30. repeat wait() until Player.Character
  31. Character = Player.Character
  32. MEME = 47594659
  33. MAX = #Memes
  34. AT = 1
  35. Billboard = Instance.new("BillboardGui", Character.Head)
  36. Image = Instance.new("ImageLabel", Billboard)
  37. Billboard.AlwaysOnTop = true
  38. Billboard.Adornee = Character.Head
  39. Billboard.Size = UDim2.new(1, 0, 1,0)
  40. Image.BackgroundTransparency = 1
  41. Image.Position = UDim2.new(-2, 0,-2, 0)
  42. Image.Size = UDim2.new(5, 0, 4, 0)
  43. s = Instance.new("ScreenGui", Player.PlayerGui)
  44. f = Instance.new("Frame", s)
  45. b = Instance.new("TextButton", f)
  46. il = Instance.new("ImageLabel", f)
  47. f.Position = UDim2.new(0.8, 0, 0.6, 0)
  48. f.Size = UDim2.new(0.2, 0, 0.3, 0)
  49. b.Position = UDim2.new(0, 0, 0.9, 0)
  50. b.Size = UDim2.new(1, 0, 0.1, 0)
  51. b.Style = "RobloxRoundDropdownButton"
  52. b.Font = "Legacy"
  53. b.Text = "Next > "
  54. il.Size = UDim2.new(1, 0, 0.9, 0)
  55. il.Image = "rbxassetid://"..MEME
  56. b.MouseButton1Down:connect(function()
  57. MEME = Memes[AT]
  58. if AT >= MAX then
  59. AT = 1
  60. else
  61. AT = AT+1
  62. end
  63. end)
  64. coroutine.wrap(function()
  65. repeat
  66. il.Image = "rbxassetid://"..MEME
  67. Image.Image = "rbxassetid://"..MEME
  68. wait()
  69. until Player.Character.Humanoid.Health == 0
  70. end)()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement