Advertisement
JW2

Smile

JW2
Jan 8th, 2023
274
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.37 KB | None | 0 0
  1. Find Lua scripts online and paste them here
  2. print("Entity has spawn for now.")
  3. local player = game.Players.LocalPlayer
  4. local character = player.Character
  5. local humanoid = character:WaitForChild("Humanoid")
  6. local mouse = player:GetMouse()
  7. local model = Instance.new("Model")
  8. local entity = Instance.new("Part")
  9. local LoopedSound = Instance.new("Sound")
  10. LoopedSound.Parent = entity
  11. LoopedSound.Looped = true
  12. LoopedSound.Playing = true
  13. LoopedSound.SoundId = "rbxassetid://8880765497"
  14. local DistortionSoundEffect = Instance.new("DistortionSoundEffect")
  15. DistortionSoundEffect.Parent = LoopedSound
  16. model.Parent = workspace
  17. entity.Parent = model
  18. entity.Size = Vector3.new(4, 8, 4)
  19. entity.Touched:Connect(function(v)
  20. if v.Parent:FindFirstChild("Humanoid") then
  21. v.Parent.Humanoid.Health = 0
  22. end
  23. end)
  24. entity.Name = ""
  25. model.PrimaryPart = entity
  26. local debounce = false
  27. humanoid.Touched:Connect(function(v)
  28. if v.Parent:FindFirstChild("Assets") and debounce == false then
  29. r = math.random(1,10)
  30. print(r)
  31. debounce = true
  32. wait(2)
  33. if r == 10 then
  34. local flicklight = Instance.new("Sound")
  35. flicklight.SoundId = "rbxassetid://4288784832"
  36. flicklight.Parent = v.Parent.Base
  37. flicklight.Volume = 1
  38. flicklight:Play()
  39. flicklight:Destroy()
  40. wait(1)
  41. for i=0,1,0.1 do
  42. wait()
  43. entity.CFrame = entity.CFrame:Lerp(v.Parent.RoomEnd.CFrame,i)
  44. end
  45. wait(2)
  46. for i=0,1,0.1 do
  47. wait()
  48. entity.CFrame = entity.CFrame:Lerp(v.Parent.RoomStart.CFrame,i)
  49. end
  50. end
  51. wait(2)
  52. debounce = false
  53. else
  54. print("nothing.")
  55. end
  56. end)
  57. local light = Instance.new("PointLight")
  58. light.Parent = entity
  59. light.Brightness = 60
  60. light.Color = Color3.new(255,0,0)
  61. local BillboardGui = Instance.new("BillboardGui")
  62. BillboardGui.Parent = entity
  63. entity.Transparency = 1
  64. entity.CanCollide = false
  65. entity.Anchored = true
  66. local image = Instance.new("ImageLabel")
  67. image.Parent = BillboardGui
  68. image.ImageTransparency = 0
  69. image.BackgroundTransparency = 1
  70. BillboardGui.Size = UDim2.new(5,1,5)
  71. image.Size = UDim2.new(1,0,1,0)
  72. image.Image = "rbxassetid://12006109629"
  73. while wait(0) do
  74. image.Rotation = 5
  75. wait(0.00000001)
  76. image.Rotation = 13
  77. wait(0.00000001)
  78. image.Rotation = 9
  79. wait(0.00000001)
  80. image.Rotation = 2
  81. wait(0.00000001)
  82. image.Rotation = -5
  83. wait(0.00000001)
  84. image.Rotation = -13
  85. wait(0.00000001)
  86. image.Rotation = -20
  87. wait(0.00000001)
  88. image.Rotation = -2
  89. wait(0.00000001)
  90. image.Rotation = 0
  91. wait(0.00000001)
  92. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement