Advertisement
Gametoy

Untitled

Feb 12th, 2018
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.41 KB | None | 0 0
  1. --[[
  2. made by mr steal yo bork dont edit anything below plz just run script and you will see
  3. --]]
  4.  
  5.  
  6. p = game.Players.LocalPlayer
  7. t = Instance.new("Tool")
  8. t.Parent = p.Backpack
  9. t.Name = "Sign lololo"
  10. local handlelol = Instance.new("Part")
  11. handlelol.Name = "Handle"
  12. handlelol.Parent = t
  13. handlelol.formFactor = "Plate"
  14. handlelol.BrickColor = BrickColor.Random()
  15. handlelol.Material = "Glass"
  16. handlelol.Size = Vector3.new(1, 4.5, .5)
  17. handlelol.TopSurface = "Smooth"
  18. handlelol.BottomSurface = "Smooth"
  19. handlelol.Reflectance = 0
  20. handlelol.Material = "Glass"
  21. local sign = Instance.new("Part")
  22. sign.Name = "Part"
  23. sign.Parent = t
  24. sign.formFactor = "Plate"
  25. sign.BrickColor = BrickColor.Random()
  26. sign.Material = "Glass"
  27. sign.Size = Vector3.new(5, 4, 1)
  28. sign.TopSurface = "Smooth"
  29. sign.BottomSurface = "Smooth"
  30. sign.Reflectance = 0
  31.  
  32. mesh123 = Instance.new("BlockMesh")
  33. mesh123.Parent = sign
  34. mesh123.Scale = Vector3.new(1.1, 1.1, 0.8)
  35.  
  36. w2 = Instance.new("Weld")
  37. w2.Parent = handlelol
  38. w2.Part0 = sign
  39. w2.Part1 = handlelol
  40. w2.C0 = CFrame.fromEulerAnglesXYZ(0, 0, 0) + Vector3.new(0, -2.5, 0)
  41. -----------------------------------------------------------------------
  42. local SurfaceGui = Instance.new("SurfaceGui")
  43. local TextBox = Instance.new("TextBox")
  44. local ScreenGui = Instance.new("ScreenGui")
  45. local TextLabel = Instance.new("TextBox")
  46. ScreenGui.Parent = p.PlayerGui
  47. TextBox.Parent = ScreenGui
  48. TextBox.BackgroundColor3 = Color3.new(0.756863, 0.705882, 1)
  49. TextBox.Position = UDim2.new(0, 74, 0, 374)
  50. TextBox.Size = UDim2.new(0, 176, 0, 50)
  51. TextBox.Font = Enum.Font.Highway
  52. TextBox.FontSize = Enum.FontSize.Size28
  53. TextBox.Text = "Type text you want here"
  54. TextBox.TextSize = 20
  55. TextBox.TextWrapped = true
  56. TextBox.Visible = false
  57. SurfaceGui.Parent = sign
  58. SurfaceGui.Face = Enum.NormalId.Front
  59. TextLabel.Parent = SurfaceGui
  60. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  61. TextLabel.BackgroundTransparency = 1
  62. TextLabel.Size = UDim2.new(0, 800, 0, 600)
  63. TextLabel.Font = Enum.Font.Arcade
  64. TextLabel.FontSize = Enum.FontSize.Size96
  65. TextLabel.Text = "same"
  66. TextLabel.TextColor3 = Color3.new(math.random(), math.random(), math.random())
  67. TextLabel.TextSize = 100
  68. TextLabel.TextWrapped = true
  69. t.Equipped:connect(function()
  70. TextBox.Visible = true
  71. end)
  72.  
  73. t.Unequipped:connect(function()
  74. TextBox.Visible = false
  75. end)
  76. wait(1)
  77. TextBox.Changed:connect(function()
  78. TextLabel.Text = TextBox.Text
  79. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement