Advertisement
Guest User

ScriptTutorial

a guest
Jan 17th, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. -- Instance.new
  2.  
  3. wait(3)
  4.  
  5. TutorialPart = Instance.new("Part",game.Workspace)
  6. TutorialPart.Name = "TutorialPart"
  7.  
  8. wait(1)
  9.  
  10.  
  11. -- Printing And Changing Properties
  12.  
  13. wait(1)
  14.  
  15. warn("This Is Warning!")
  16.  
  17. wait(1)
  18.  
  19. print("This Is Good")
  20.  
  21. wait(1)
  22.  
  23. game.Workspace.TutorialPart.BrickColor = BrickColor.new("Really red")
  24. wait(1)
  25. game.Workspace.TutorialPart.Material = "Brick"
  26.  
  27. wait(1)
  28.  
  29. game.Workspace.TutorialPart.Reflectance = 0.5
  30.  
  31. game.Workspace.TutorialPart.Transparency = 0.9
  32. wait(1)
  33. game.Workspace.TutorialPart.Transparency = 0
  34. wait(1)
  35. game.Workspace.TutorialPart.Anchored = true
  36. wait(1)
  37. game.Workspace.TutorialPart.Archivable = false
  38. wait(1)
  39. game.Workspace.TutorialPart.CanCollide = false
  40. wait(1)
  41. game.Workspace.TutorialPart.Anchored = false
  42. game.Workspace.TutorialPart.Archivable = true
  43. game.Workspace.TutorialPart.CanCollide = true
  44.  
  45. -- Variables
  46. wait(1)
  47.  
  48. MyVariable = "Hello"
  49.  
  50. print(MyVariable)
  51. wait(1)
  52.  
  53. TutorialPart = game.Workspace.TutorialPart
  54. TutorialPart.Transparency = 1
  55. wait(1)
  56. TutorialPart.Transparency = 0
  57. wait(1)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement