Advertisement
DrakerMaker

funn

Apr 15th, 2020
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.26 KB | None | 0 0
  1.  
  2. NLS([[
  3. local animation = Instance.new("Animation")
  4.  
  5. animation.AnimationId = "http://www.roblox.com/Asset?ID=35654637"
  6.  
  7. local anim=owner.Character.Humanoid:LoadAnimation(animation)
  8.  
  9. anim:Play(5, 5, 5)
  10. ]], owner.Character)
  11. local song = Instance.new("Sound", owner.Character.Head)
  12. song.Volume = 4
  13. song.SoundId = "rbxassetid://4591326344"
  14. song.Looped = true
  15. song:Play()
  16. function wbtwe(Part0, Part1, C0)
  17. local weld = Instance.new("Weld", Part0)
  18. weld.Part0 = Part0
  19. weld.Part1 = Part1
  20. weld.C0 = Part1.CFrame:inverse() *Part1.CFrame *C0
  21. return weld
  22. end
  23. local BillboardGui = Instance.new("BillboardGui")
  24. local Frame = Instance.new("Frame")
  25. local Text = Instance.new("TextBox")
  26. BillboardGui.MaxDistance = 50
  27. BillboardGui.Name = "Type"
  28. BillboardGui.Parent = owner.Character.HumanoidRootPart
  29. BillboardGui.Active = true
  30. BillboardGui.Size = UDim2.new(15.5, 0, 15, 0)
  31. BillboardGui.StudsOffset = Vector3.new(0, 10, 0)
  32.  
  33. Frame.Name = "Framer"
  34. Frame.Parent = BillboardGui
  35. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  36. Frame.BackgroundTransparency = 1
  37. Frame.BorderSizePixel = 0
  38. Frame.Position = UDim2.new(0.209999993, 0, 0.209999993, 0)
  39. Frame.Selectable = true
  40. Frame.Size = UDim2.new(0.600000024, 0, 0.699999988, 0)
  41.  
  42. Text.Name = "Labeler"
  43. Text.Parent = Frame
  44. Text.BackgroundColor3 = Color3.new(0, 0, 0)
  45. Text.BackgroundTransparency = 1
  46. Text.Position = UDim2.new(0.200000003, 0, 0.150000006, 0)
  47. Text.Size = UDim2.new(0.600000024, 0, 0.699999988, 0)
  48. Text.ClearTextOnFocus = false
  49. Text.Text = "When Skid Ban"
  50. Text.TextSize = 40
  51. Text.TextWrapped = false
  52. Text.TextColor = BrickColor.new("Institutional white")
  53.  
  54. hrw = wbtwe(owner.Character.Torso, owner.Character.HumanoidRootPart, CFrame.new(0, 0, 0) *CFrame.Angles(0, 0, 0))
  55. fly = 0
  56. up = 0.01
  57. a = coroutine.wrap(function()
  58. while game:GetService("RunService").Stepped:wait() do
  59. fly = fly +up
  60. hrw.C0 = hrw.C0:lerp(owner.Character.Torso.CFrame:inverse() *owner.Character.Torso.CFrame *CFrame.new(math.cos(fly) *2, -1 +math.sin(fly) *-2, 0) *CFrame.Angles(math.cos(fly) *0.1, math.sin(fly) *0.1, math.cos(fly) *0.1), 0.3)
  61. Text.Rotation = math.cos(fly) *7
  62. end
  63. end)a()
  64. owner.Chatted:connect(function(msg)
  65. if msg:sub(1,4) == "/e u" then
  66. up = msg:sub(6)
  67. end
  68. if msg:sub(1,4) == "/e s" then
  69. song.SoundId = "rbxassetid://"..msg:sub(6)
  70. end
  71. if msg == "/e mayhem" then
  72. up = 2
  73. Text.Text = "mAyHeM"
  74. BillboardGui.Parent = owner.Character.Head
  75. song:Stop()
  76. song.SoundId = "rbxassetid://614032233"
  77. song:Play()
  78. Text.TextColor3 = Color3.new(255, 0, 0)
  79. Text.Font = Enum.Font.Fantasy
  80. Text.TextSize = 80
  81. Instance.new("FlangeSoundEffect", song)
  82. Instance.new("FlangeSoundEffect", song)
  83. Instance.new("FlangeSoundEffect", song)
  84. local explode = Instance.new("Part", workspace)
  85. explode.Anchored = true
  86. explode.Position = owner.Character.Head.Position
  87. explode.Shape = "Ball"
  88. explode.Size = Vector3.new(5, 5, 5)
  89. explode.BrickColor = BrickColor.new("Bright orange")
  90. explode.Material = "Neon"
  91. explode.Transparency = 0.4
  92. explode.CanCollide = false
  93.  
  94.  
  95. for i = 1,105 do
  96. game:GetService("RunService").Stepped:wait()
  97. explode.Size = explode.Size +Vector3.new(1, 1, 1)
  98. explode.Transparency = explode.Transparency +0.01
  99. end
  100. explode:Destroy()
  101. end
  102. if msg:sub(1,4) == "/e t" then
  103. Text.Text = msg:sub(6)
  104. end
  105. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement