Advertisement
Guest User

Untitled

a guest
Feb 20th, 2020
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.55 KB | None | 0 0
  1. script.Parent.Text = "Game"
  2. wait(10)
  3. script.Parent.Text = "Pilot"
  4. wait(125)
  5. local players = game.Players:GetChildren() --135 ("Oh no!!! Look!!!!") & Plane crashes
  6. local Players = game:GetService("Players")
  7. local function randomplayer()
  8. if #players >= 1 then
  9. local piayer1 = Players:GetPlayers()[math.random(#Players:GetPlayers())]
  10. script.Parent.Text = piayer1.Name
  11. local userId = piayer1.UserId
  12. local thumbType = Enum.ThumbnailType.HeadShot
  13. local thumbSize = Enum.ThumbnailSize.Size420x420
  14. local content, isReady = Players:GetUserThumbnailAsync(userId, thumbType, thumbSize)
  15. local imageLabel = script.Parent.Parent.ImageLabel
  16. imageLabel.Image = content
  17. imageLabel.Size = UDim2.new(0, 78, 0, 69)
  18. end
  19. randomplayer()
  20. wait(20)
  21. randomplayer() --155 ("Hey, look, there's a cabin over there!")
  22. wait(25)
  23. randomplayer() --180
  24.  
  25. workspace.Cabin.Cabin.Door.ClickDetector.MouseClick:Connect(function(Piayer)
  26. randomplayer() --0 ("Oh no, the door's locked!")
  27. wait(5)
  28. randomplayer() --5 ("Maybe there's a way to break in?")
  29. wait(5)
  30. randomplayer() --10 ("No, the door seems to be fully closed and we don't have a tool we can break the door with.")
  31. wait(5)
  32. randomplayer() --15 ("Oh well, I guess we'll take shelter elsewhere.")
  33. wait(5)
  34. randomplayer() --20 ("Maybe we can build a hut?")
  35. wait(5)
  36. randomplayer() --25 ("Sounds good to me!")
  37. repeat wait() until workspace.Values.Logs.Value >= 5
  38. wait(15)
  39. script.Parent.Text = ""
  40. wait(20)
  41. randomplayer() --35 ("Good morning everyone!")
  42. wait(10)
  43. randomplayer() --45 ("Let's look for food!")
  44. wait(10)
  45. randomplayer()
  46. workspace.Cabin.Lever.ClickDetector.MouseClick:Connect(function()
  47. wait(20)
  48. script.Parent.Text = "Monster" --220 ("Or... Are you?")
  49. script.Parent.Parent.ImageLabel.Image = "http://www.roblox.com/asset/?id=3145408962" --220 (Monster)
  50. workspace.Cabin.Cabin.HAMMER.ClickDetector.MouseClick:Connect(function()
  51. wait(95)
  52. script.Parent.Text = "Bacon"
  53. script.Parent.Parent.ImageLabel.Image = "http://www.roblox.com/asset/?id=3605198507" --Bacon hair
  54. wait(15)
  55. randomplayer()
  56. wait(5)
  57. script.Parent.Text = "Bacon" --115
  58. script.Parent.Parent.ImageLabel.Image = "http://www.roblox.com/asset/?id=3605198507" --Bacon hair
  59. wait(20)
  60. randomplayer()
  61. wait(5)
  62. script.Parent.Text = "Bacon"
  63. script.Parent.Parent.ImageLabel.Image = "http://www.roblox.com/asset/?id=3605198507" --Bacon hair
  64. wait(35)
  65. script.Parent.Text = "Helicopter Co - Pilot" --175
  66. script.Parent.Parent.ImageLabel.Visible = false
  67. wait(5)
  68. randomplayer()
  69. wait(5)
  70. script.Parent.Text = "Helicopter Pilot" --185
  71. wait(5)
  72. end)
  73. end)
  74. end)
  75. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement