Advertisement
CrazIIZen

[OFFICIAL, ROBLOX] Write on paper!

May 6th, 2016
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.68 KB | None | 0 0
  1. --Leet credits part. . . DON'T REMOVE, or the script will be discontinuited ;D
  2. local hint = Instance.new('Hint', game.Workspace)
  3. wait(3.0)
  4. hint.Text = "Paper writtable script has loaded! (By CrazIIZen)"
  5. wait(10)
  6. hint:Destroy()
  7. --Let's do dis
  8.  
  9.  
  10. --Create the part and name it.
  11. Instance.new('Part', game.Workspace)
  12. game.Workspace.Part.Name = "Paper"
  13. wait(0.2)
  14. --Size the part , set color and set a material.
  15. game.Workspace.Paper.Size = Vector3.new(5.08, 0.35, 2.7)
  16. game.Workspace.Paper.BrickColor = BrickColor.New("Institutional white")
  17. game.Workspace.Paper.Material = "Slate"
  18.  
  19. --Create a surfacegui.
  20. Instance.new('SurfaceGui', game.Workspace.Paper)
  21.  
  22. --Create a frame , face the GUI to Top, set it Invisible and size it.
  23. Instance.new('Frame', game.Workspace.Paper.SurfaceGui)
  24. game.Workspace.Paper.SurfaceGui.Face = "Top"
  25. game.Workspace.Paper.SurfaceGui.Frame.Size = UDim2.new(1, 1, 1, 1)
  26. game.Workspace.Paper.SurfaceGui.Frame.BackgroundTransparency = 1
  27.  
  28. --Create a text box, to write! of course. . . Oh and set all shit too . . .
  29. Instance.new('TextBox', game.Workspace.Paper.SurfaceGui.Frame)
  30. game.Workspace.Paper.SurfaceGui.Frame.TextBox.Size = UDim2.new(1, 0, 1.0, 0)
  31. game.Workspace.Paper.SurfaceGui.Frame.TextBox.TextXAlignment = "Left"
  32. game.Workspace.Paper.SurfaceGui.Frame.TextBox.TextYAlignment = "Top"
  33. game.Workspace.Paper.SurfaceGui.Frame.TextBox.Text = "AAAAAAAAAAAAAAAAAAAAAAAAA"
  34. game.Workspace.Paper.SurfaceGui.Frame.TextBox.FontSize = "Size96"
  35. game.Workspace.Paper.SurfaceGui.Frame.TextBox.BackgroundTransparency = 1
  36. game.Workspace.Paper.SurfaceGui.Frame.TextBox.MultiLine = true
  37. game.Workspace.Paper.SurfaceGui.Frame.TextBox.Font = "Arial"
  38.  
  39. --That's all for the moment!
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement