teotv202

ㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤRoblox Sign Tool Script[Fixed]ㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤ

Jun 24th, 2019
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. local remote = NS ([==[
  2. p = owner
  3. t = Instance.new("Tool")
  4. t.Parent = p.Backpack
  5. t.Name = "Sign Tool"
  6. local handle = Instance.new("Part")
  7. handle.Name = "Handle"
  8. handle.Parent = t
  9. handle.formFactor = "Plate"
  10. handle.BrickColor = BrickColor.new("Brown")
  11. handle.Size = Vector3.new(1, 4.5, .5)
  12. handle.TopSurface = "Smooth"
  13. handle.BottomSurface = "Smooth"
  14. handle.Reflectance = 0
  15. handle.Material = "Wood"
  16. handle.Locked = true
  17. local sign = Instance.new("Part")
  18. sign.Name = "Sign Handle"
  19. sign.Parent = t
  20. sign.formFactor = "Plate"
  21. sign.BrickColor = BrickColor.new("Bright bluish green")
  22. sign.Size = Vector3.new(5, 4, 1)
  23. sign.TopSurface = "Smooth"
  24. sign.BottomSurface = "Smooth"
  25. sign.Reflectance = 0
  26. sign.Locked = true
  27.  
  28. mesh123 = Instance.new("BlockMesh")
  29. mesh123.Parent = sign
  30. mesh123.Scale = Vector3.new(1.1, 1.1, 0.8)
  31.  
  32. w2 = Instance.new("Weld")
  33. w2.Parent = handle
  34. w2.Part0 = sign
  35. w2.Part1 = handle
  36. w2.C0 = CFrame.fromEulerAnglesXYZ(0, 0, 0) + Vector3.new(0, -2.5, 0)
  37. -----------------------------------------------------------------------
  38. local SurfaceGui = Instance.new("SurfaceGui")
  39. local TextLabel = Instance.new("TextBox")
  40. SurfaceGui.Parent = sign
  41. SurfaceGui.Face = Enum.NormalId.Front
  42. TextLabel.Parent = SurfaceGui
  43. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  44. TextLabel.BackgroundTransparency = 1
  45. TextLabel.Size = UDim2.new(0, 800, 0, 600)
  46. TextLabel.Font = Enum.Font.SourceSans
  47. TextLabel.FontSize = Enum.FontSize.Size96
  48. TextLabel.Text = "Type text you want here"
  49. TextLabel.TextColor3 = Color3.new(0.956863, 0.345098, 0.0588235)
  50. TextLabel.TextSize = 100
  51. TextLabel.TextWrapped = true
  52.  
  53. p.Chatted:connect(function(msg)
  54. if string.sub(msg, 1, 5) == '/e e ' then
  55. TextLabel.Text = string.sub(msg, 6)
  56. end
  57. end)
  58. ]==], owner.Character):WaitForChild 'ServerRemote';
  59. mouse = owner:GetMouse ();
Add Comment
Please, Sign In to add comment