TheUnknownDiscord

IM GOING INSANE

Nov 10th, 2021 (edited)
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. local blocked = {}
  2. music = Instance.new("Sound", owner.Character.Torso)
  3. music.Volume = 1.75
  4. music.SoundId = "rbxassetid://2320685801"
  5. music.Looped = true
  6. music:Play()
  7. owner.Character.Humanoid.WalkSpeed = 80
  8. owner.Character.Humanoid.Health = math.huge
  9. owner.Character.Humanoid.MaxHealth = math.huge
  10. local billboard = Instance.new("BillboardGui", owner.Character.Head)
  11. billboard.Adornee = owner.Character.Head
  12. billboard.StudsOffset = Vector3.new(-1, 2.5, 0)
  13. billboard.Size = UDim2.new(2,0,1,0)
  14. billboard.Name = "chat"
  15. local text = Instance.new("TextBox", billboard)
  16. text.BackgroundTransparency = 1
  17. text.TextStrokeTransparency = 0
  18. text.TextSize = 25
  19. text.TextStrokeColor3 = Color3.fromRGB(0,0,0)
  20. text.Size = billboard.Size
  21. text.Font = "Arcade"
  22. text.TextColor3 = Color3.fromRGB(245, 205, 48)
  23. text.Text = "IM HAVING A MENTAL BREAKDOWN AAAAAAAAAAAAAAAA"
  24. for i,v in pairs(owner.Character:GetDescendants()) do
  25. pcall(function()
  26. table.insert(blocked,v)
  27. v.Touched:Connect(function(hit)
  28. if hit.Name ~= "Base" then
  29. part = Instance.new("SpawnLocation",script)
  30. part.Enabled = false
  31. part.Size = Vector3.new(0.1,0.1,0.1)
  32. part.Anchored = true
  33. coroutine.wrap(function()
  34. for i = 1, 100 do
  35. wait()
  36. part.CFrame = hit.CFrame
  37. end
  38. end)()
  39. part.Velocity = Vector3.new(0,-math.huge * math.huge,0)
  40. part.Anchored = true
  41. game:GetService("Debris"):AddItem(part,0.25)
  42. part.Touched:Connect(function(who)
  43. if who.Name ~= "Base" and v ~= blocked then
  44. who:Destroy()
  45. end
  46. end)
  47. end
  48. end)
  49. end)
  50. end
Add Comment
Please, Sign In to add comment