Advertisement
Diep8328Paster

Untitled

Jun 24th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.54 KB | None | 0 0
  1. wait(0.1)
  2. print("die")
  3. local p = game:GetService("Players").LocalPlayer
  4. local char = p.Character
  5. local hi = Instance.new("Sound",char.Torso)
  6. hi.Volume = 10
  7. hi.SoundId = "rbxassetid://171914461"
  8. hi.Looped = true
  9. hi:Play()
  10. local gui = Instance.new("BillboardGui",char.Head)
  11. gui.Size = UDim2.new(3.2, 0,1.5, 0)
  12. gui.MaxDistance = "inf"
  13. gui.StudsOffset = Vector3.new(-3, 3, 0)
  14. local text = Instance.new("TextLabel",gui)
  15. text.Size = UDim2.new(3.2, 0,1.5, 0)
  16. text.TextScaled = true
  17. text.TextWrapped = true
  18. text.BackgroundTransparency = 1
  19. text.Text = "SEIZURE TIME!1!!1"
  20. text.FontSize = Enum.FontSize.Size24
  21. while true do
  22. wait()
  23. text.TextColor3 = Color3.fromRGB(math.random(0,255),math.random(0,255),math.random(0,255))
  24. char.Torso.Neck.C0 = char.Torso.Neck.C0 * CFrame.Angles(math.random(0,360),math.random(0,360),math.random(0,360))
  25. char.Torso["Right Shoulder"].C0 = char.Torso["Right Shoulder"].C0 * CFrame.Angles(math.random(0,360),math.random(0,360),math.random(0,360))
  26. char.Torso["Left Shoulder"].C0 = char.Torso["Left Shoulder"].C0 * CFrame.Angles(math.random(0,360),math.random(0,360),math.random(0,360))
  27. char.Torso["Right Hip"].C0 = char.Torso["Right Hip"].C0 * CFrame.Angles(math.random(0,360),math.random(0,360),math.random(0,360))
  28. char.Torso["Left Hip"].C0 = char.Torso["Left Hip"].C0 * CFrame.Angles(math.random(0,360),math.random(0,360),math.random(0,360))
  29. char.HumanoidRootPart.CFrame = char.HumanoidRootPart.CFrame * CFrame.Angles(math.random(0,360),math.random(0,360),math.random(0,360))
  30. char.Humanoid.Health = math.random(1,100)
  31. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement