SHOW:
|
|
- or go back to the newest paste.
1 | --[[ | |
2 | made by mr steal yo bork dont edit anything below plz just run script and you will see | |
3 | --]] | |
4 | --edited by killerlol603 >:) | |
5 | ||
6 | p = game.Players.contentdeleted93726 | |
7 | t = Instance.new("Tool") | |
8 | t.Parent = p.Backpack | |
9 | - | t.Name = "Sign lololo" |
9 | + | t.Name = "pewdiepie lololo" |
10 | local handlelol = Instance.new("Part") | |
11 | handlelol.Name = "Handle" | |
12 | handlelol.Parent = t | |
13 | handlelol.formFactor = "Plate" | |
14 | handlelol.BrickColor = BrickColor.new("Brown") | |
15 | handlelol.Size = Vector3.new(1, 4.5, .5) | |
16 | handlelol.TopSurface = "Smooth" | |
17 | handlelol.BottomSurface = "Smooth" | |
18 | handlelol.Reflectance = 0 | |
19 | handlelol.Material = "Wood" | |
20 | local sign = Instance.new("Part") | |
21 | sign.Name = "Part" | |
22 | sign.Parent = t | |
23 | sign.formFactor = "Plate" | |
24 | sign.BrickColor = BrickColor.new("Bright bluish green") | |
25 | sign.Size = Vector3.new(5, 4, 1) | |
26 | sign.TopSurface = "Smooth" | |
27 | sign.BottomSurface = "Smooth" | |
28 | sign.Reflectance = 0 | |
29 | ||
30 | mesh123 = Instance.new("BlockMesh") | |
31 | mesh123.Parent = sign | |
32 | mesh123.Scale = Vector3.new(1.1, 1.1, 0.8) | |
33 | ||
34 | w2 = Instance.new("Weld") | |
35 | w2.Parent = handlelol | |
36 | w2.Part0 = sign | |
37 | w2.Part1 = handlelol | |
38 | w2.C0 = CFrame.fromEulerAnglesXYZ(0, 0, 0) + Vector3.new(0, -2.5, 0) | |
39 | ----------------------------------------------------------------------- | |
40 | local SurfaceGui = Instance.new("SurfaceGui") | |
41 | local TextBox = Instance.new("TextBox") | |
42 | local ScreenGui = Instance.new("ScreenGui") | |
43 | local TextLabel = Instance.new("TextBox") | |
44 | ScreenGui.Parent = p.PlayerGui | |
45 | TextBox.Parent = ScreenGui | |
46 | TextBox.BackgroundColor3 = Color3.new(0.756863, 0.705882, 1) | |
47 | TextBox.Position = UDim2.new(0, 74, 0, 374) | |
48 | TextBox.Size = UDim2.new(0, 176, 0, 50) | |
49 | TextBox.Font = Enum.Font.Highway | |
50 | TextBox.FontSize = Enum.FontSize.Size28 | |
51 | - | TextBox.Text = "Type text you want here" |
51 | + | TextBox.Text = "sub to pewdiepie" |
52 | - | TextBox.TextSize = 10 |
52 | + | TextBox.TextSize = 30 |
53 | TextBox.TextWrapped = true | |
54 | TextBox.Visible = false | |
55 | SurfaceGui.Parent = sign | |
56 | SurfaceGui.Face = Enum.NormalId.Front | |
57 | TextLabel.Parent = SurfaceGui | |
58 | TextLabel.BackgroundColor3 = Color3.new(1, 1, 1) | |
59 | TextLabel.BackgroundTransparency = 1 | |
60 | TextLabel.Size = UDim2.new(0, 800, 0, 600) | |
61 | TextLabel.Font = Enum.Font.SourceSans | |
62 | TextLabel.FontSize = Enum.FontSize.Size96 | |
63 | TextLabel.Text = "same" | |
64 | - | TextLabel.TextColor3 = Color3.new(0.956863, 0.345098, 0.0588235) |
64 | + | TextLabel.TextColor3 = Color3.new(255, 255, 255) |
65 | TextLabel.TextSize = 100 | |
66 | TextLabel.TextWrapped = true | |
67 | t.Equipped:connect(function() | |
68 | TextBox.Visible = true | |
69 | end) | |
70 | ||
71 | t.Unequipped:connect(function() | |
72 | TextBox.Visible = false | |
73 | end) | |
74 | wait(1) | |
75 | TextBox.Changed:connect(function() | |
76 | TextLabel.Text = TextBox.Text | |
77 | end) |