View difference between Paste ID: 9DkeDArH and Hw4EA2Lc
SHOW: | | - or go back to the newest paste.
1
--made by pdnghiaqoi [marseio]
2
--do not change this credit
3
local chatting = false
4
local currentgui
5
local currentline = 2
6
BillboardGui0 = Instance.new("BillboardGui")
7
Frame1 = Instance.new("Frame")
8
Frame2 = Instance.new("Frame")
9
ImageLabel3 = Instance.new("ImageLabel")
10
TextLabel4 = Instance.new("TextLabel")
11
TextLabel5 = Instance.new("TextLabel")
12
BillboardGui0.Parent = mas
13
BillboardGui0.Size = UDim2.new(15, 0, 4.5, 0)
14
BillboardGui0.ClipsDescendants = true
15
BillboardGui0.Adornee = nil
16
BillboardGui0.AlwaysOnTop = true
17
BillboardGui0.MaxDistance = 35
18
BillboardGui0.SizeOffset = Vector2.new(0, 1)
19
Frame1.Name = "White"
20
Frame1.Parent = BillboardGui0
21
Frame1.Size = UDim2.new(1, 0, 1, 0)
22
Frame1.BackgroundColor = BrickColor.new("Institutional white")
23
Frame1.BackgroundColor3 = Color3.new(1, 1, 1)
24
Frame1.BorderSizePixel = 0
25
Frame2.Name = "Black"
26
Frame2.Parent = Frame1
27
Frame2.Position = UDim2.new(0, 5, 0, 5)
28
Frame2.Size = UDim2.new(1, -10, 1, -10)
29
Frame2.BackgroundColor = BrickColor.new("Really black")
30
Frame2.BackgroundColor3 = Color3.new(0, 0, 0)
31
Frame2.BorderColor = BrickColor.new("Pastel violet")
32
Frame2.BorderColor3 = Color3.new(0.588235, 0.588235, 1)
33
Frame2.BorderSizePixel = 4
34
ImageLabel3.Name = "Portrait"
35
ImageLabel3.Parent = Frame2
36
ImageLabel3.Position = UDim2.new(0.0195086356, 0, 0.0609827824, 0)
37
ImageLabel3.Size = UDim2.new(0.227539942, 0, 0.870999992, 0)
38
ImageLabel3.BackgroundColor = BrickColor.new("Institutional white")
39
ImageLabel3.BackgroundColor3 = Color3.new(1, 1, 1)
40
ImageLabel3.BackgroundTransparency = 9
41
ImageLabel3.BorderSizePixel = 0
42
ImageLabel3.Image = "rbxassetid://2634816264"
43
TextLabel4.Name = "Shadow"
44
TextLabel4.Parent = Frame2
45
TextLabel4.Position = UDim2.new(0.277011365, 0, 0.0826922357, 0)
46
TextLabel4.Size = UDim2.new(0.716000021, 0, 0.870999992, 0)
47
TextLabel4.BackgroundColor = BrickColor.new("Really black")
48
TextLabel4.BackgroundColor3 = Color3.new(0, 0, 0)
49
TextLabel4.BackgroundTransparency = 9
50
TextLabel4.Font = Enum.Font.Arcade
51
TextLabel4.FontSize = Enum.FontSize.Size60
52
TextLabel4.Text = "* "
53
TextLabel4.TextColor = BrickColor.new("Medium lilac")
54
TextLabel4.TextColor3 = Color3.new(0.215686, 0.215686, 0.392157)
55
TextLabel4.TextSize = 50
56
TextLabel4.TextTruncate = Enum.TextTruncate.AtEnd
57
TextLabel4.TextWrap = true
58
TextLabel4.TextWrapped = true
59
TextLabel4.TextXAlignment = Enum.TextXAlignment.Left
60
TextLabel5.Name = "Msg"
61
TextLabel5.Parent = Frame2
62
TextLabel5.Position = UDim2.new(0.275019109, 0, 0.0744685978, 0)
63
TextLabel5.Size = UDim2.new(0.716000021, 0, 0.870531261, 0)
64
TextLabel5.BackgroundColor = BrickColor.new("Institutional white")
65
TextLabel5.BackgroundColor3 = Color3.new(1, 1, 1)
66
TextLabel5.BackgroundTransparency = 9
67
TextLabel5.Font = Enum.Font.Arcade
68
TextLabel5.FontSize = Enum.FontSize.Size60
69
TextLabel5.Text = "* "
70
TextLabel5.TextColor = BrickColor.new("Institutional white")
71
TextLabel5.TextColor3 = Color3.new(1, 1, 1)
72
TextLabel5.TextSize = 50
73
TextLabel5.TextTruncate = Enum.TextTruncate.AtEnd
74
TextLabel5.TextWrap = true
75
TextLabel5.TextWrapped = true
76
TextLabel5.TextXAlignment = Enum.TextXAlignment.Left
77
wait()
78
function saymsg(player,mes,style)
79
pcall(function()
80
local gui = BillboardGui0:Clone()
81
gui.Parent = player.Character:WaitForChild("Head")
82
local white = gui:WaitForChild("White")
83
local blk = white:WaitForChild("Black")
84
local msg = blk:WaitForChild("Msg")
85
local shd = blk:WaitForChild("Shadow")
86
local img = blk:WaitForChild("Portrait")
87
local ms
88
if style == "normal" then
89
	img.Image = "rbxassetid://2634816264"
90
elseif style == "happy" then
91
	img.Image = "rbxassetid://2634815127"
92
elseif style == "angry" then
93
	img.Image = "rbxassetid://2634815763"
94
elseif style == "blush" then
95
	img.Image = "rbxassetid://2634816040"
96
elseif style == "sincere" then
97
	img.Image = "rbxassetid://2634814819"
98
elseif style == "sarcasm" then
99
	img.Image = "rbxassetid://2634815417"
100
end
101
102
ms = "* "..mes
103
104
if string.len(ms) > 25 then
105
	msg.TextYAlignment = Enum.TextYAlignment.Top
106
	shd.TextYAlignment = Enum.TextYAlignment.Top
107
end
108
if string.len(ms) > 58 then
109
	msg.TextSize = 40
110
	shd.TextSize = 40
111
end
112
if string.len(ms) > 108 then
113
	msg.TextSize = 30
114
	shd.TextSize = 30
115
end
116
117
white.Visible = true
118
local sound = Instance.new("Sound")
119
    sound.SoundId = "rbxassetid://2633343843"
120
		sound.Volume = 1
121
		sound.Looped = false
122
		sound.Parent = player.Character
123
for i = 1, #ms do
124
    msg.Text = string.sub(ms, 1, i)
125
	shd.Text = string.sub(ms, 1, i)
126
	if string.sub(msg.Text, string.len(msg.Text) - 1) ~= " " and string.sub(msg.Text, string.len(msg.Text) - 1) ~= "," and string.sub(msg.Text, string.len(msg.Text) - 1) ~= "." then
127
      if not sound then
128
	    local sound = Instance.new("Sound")
129
		sound.SoundId = "rbxassetid://2633343843"
130
		sound.Volume = 1
131
		sound.Looped = false
132
		sound.Parent = player.Character
133
      end
134
		sound:Play()
135
	elseif string.sub(msg.Text, string.len(msg.Text) - 1) == "," or string.sub(msg.Text, string.len(msg.Text) - 1) == "." then
136
		wait(0.26)
137
	end
138
    wait(0.1)
139
end	
140
wait(3)
141
gui:Remove()
142
end)
143
end
144
game:GetService("ContentProvider"):Preload("rbxassetid://2634816264")
145
game:GetService("ContentProvider"):Preload("rbxassetid://2634815127")
146
game:GetService("ContentProvider"):Preload("rbxassetid://2634816040")
147
game:GetService("ContentProvider"):Preload("rbxassetid://2634814819")
148
game:GetService("ContentProvider"):Preload("rbxassetid://2634815417")
149
150
game:GetService("ContentProvider"):Preload("rbxassetid://2912606058")
151
game:GetService("ContentProvider"):Preload("rbxassetid://2912658185")
152
game:GetService("ContentProvider"):Preload("rbxassetid://2913582350")
153
game:GetService("ContentProvider"):Preload("rbxassetid://2913657822")
154
game:GetService("ContentProvider"):Preload("http://www.roblox.com/asset/?id=22053998")
155
156
function morph(plr)
157-
for i,v in pairs(plr.Character:GetChildren()) do
157+
158
--made by pdnghiaqoi [marseio]
159-
	if (v.ClassName == "CharacterMesh" or v.ClassName == "Hat" or v.ClassName == "Accessory" or v.ClassName == "Shirt" or v.ClassName == "ShirtGraphic" or v.ClassName == "Pants") then
159+
160-
		v:Remove()
160+
161-
	elseif (v.ClassName == "Part" or v.ClassName == "BasePart" or v.ClassName == "MeshPart") then
161+
162-
		if v.Name == "Head" then
162+
163-
      local a = v:FindFirstChild("face")
163+
164-
          if a then
164+
165-
			v:WaitForChild("face").Texture = "0"
165+
166-
              end
166+
167
                if v ~= speaker then
168-
		v.Color = BrickColor.new("Really black").Color
168+
169
                end
170
            end
171
            return plrs[math.random(1,#plrs)]
172
        end        
173-
spawn(function()
173+
174-
Pants0 = Instance.new("Pants")
174+
175-
Shirt1 = Instance.new("Shirt")
175+
176-
Pants0.Name = "Ralsei's Pants"
176+
177-
Pants0.Parent = plr.Character
177+
178-
Pants0.PantsTemplate = "rbxassetid://2785898406"
178+
179-
Shirt1.Name = "Ralsei's Shirt"
179+
180-
Shirt1.Parent = plr.Character
180+
181-
Shirt1.ShirtTemplate = "rbxassetid://2616677946"
181+
182-
Hat0 = Instance.new("Hat")
182+
183-
Part1 = Instance.new("Part")
183+
184-
SpecialMesh2 = Instance.new("SpecialMesh")
184+
185-
Accessory3 = Instance.new("Accessory")
185+
186-
Part4 = Instance.new("Part")
186+
187-
SpecialMesh5 = Instance.new("SpecialMesh")
187+
188-
Vector3Value6 = Instance.new("Vector3Value")
188+
189-
Hat0.Name = "Ralsei's Hat"
189+
190-
Hat0.Parent = plr.Character
190+
191-
Hat0.AttachmentForward = Vector3.new(-0.291265368, 0, -0.95664227)
191+
192-
Hat0.AttachmentPoint = CFrame.new(0, -0.5, 0, 0.956642389, 0, 0.291265368, 0, 1, -0, -0.291265398, 0, 0.95664227)
192+
193-
Hat0.AttachmentPos = Vector3.new(0, -0.5, 0)
193+
194-
Hat0.AttachmentRight = Vector3.new(0.956642389, 0, -0.291265398)
194+
195-
Part1.Name = "Handle"
195+
196-
Part1.Parent = Hat0
196+
197-
Part1.CFrame = CFrame.new(0, 19.6799984, 22.0100002, 0.956642389, 0, -0.291265398, 0, 1, 0, 0.291265368, 0, 0.95664227)
197+
198-
Part1.Orientation = Vector3.new(0, -16.9300003, 0)
198+
199-
Part1.Position = Vector3.new(0, 19.6799984, 22.0100002)
199+
200-
Part1.Rotation = Vector3.new(0, -16.9300003, 0)
200+
201-
Part1.Color = Color3.fromRGB(77, 203, 139)
201+
202-
Part1.Size = Vector3.new(4, 1, 2)
202+
203-
Part1.BottomSurface = Enum.SurfaceType.Smooth
203+
204-
Part1.CanCollide = false
204+
205-
Part1.TopSurface = Enum.SurfaceType.Smooth
205+
206-
SpecialMesh2.Parent = Part1
206+
207-
SpecialMesh2.MeshId = "rbxassetid://2912606058"
207+
208-
SpecialMesh2.MeshType = Enum.MeshType.FileMesh
208+
209-
Accessory3.Name = "Ralsei's Scarf"
209+
210-
Accessory3.Parent = plr.Character
210+
211-
Accessory3.AttachmentForward = Vector3.new(0, 0, 1)
211+
212-
Accessory3.AttachmentPoint = CFrame.new(0, 1.70000005, 0, -1, 0, -0, 0, 1, -0, 0, -0, -1)
212+
213-
Accessory3.AttachmentPos = Vector3.new(0, 1.70000005, 0)
213+
214-
Accessory3.AttachmentRight = Vector3.new(-1, 0, 0)
214+
215-
Part4.Name = "Handle"
215+
216-
Part4.Parent = Accessory3
216+
217-
Part4.CFrame = CFrame.new(0, 17.4799976, 22.0100002, -1, 0, 0, 0, 1, 0, 0, 0, -1)
217+
218-
Part4.Orientation = Vector3.new(0, 180, 0)
218+
219-
Part4.Position = Vector3.new(0, 17.4799976, 22.0100002)
219+
220-
Part4.Rotation = Vector3.new(-180, 0, -180)
220+
221-
Part4.Color = Color3.new(1, 0, 0.74902)
221+
222-
Part4.Size = Vector3.new(4, 1, 2)
222+
223-
Part4.BottomSurface = Enum.SurfaceType.Smooth
223+
224-
Part4.BrickColor = BrickColor.new("Hot pink")
224+
225-
Part4.CanCollide = false
225+
226-
Part4.Material = Enum.Material.Sand
226+
227-
Part4.TopSurface = Enum.SurfaceType.Smooth
227+
228-
Part4.brickColor = BrickColor.new("Hot pink")
228+
229-
SpecialMesh5.Parent = Part4
229+
230-
SpecialMesh5.MeshId = "rbxassetid://2912658185"
230+
231-
SpecialMesh5.MeshType = Enum.MeshType.FileMesh
231+
232-
Vector3Value6.Name = "OriginalSize"
232+
233-
Vector3Value6.Parent = Part4
233+
234-
Vector3Value6.Value = Vector3.new(4, 1, 2)
234+
235-
Accessory0 = Instance.new("Accessory")
235+
236-
Part1 = Instance.new("Part")
236+
237-
SpecialMesh3 = Instance.new("SpecialMesh")
237+
238-
Vector3Value4 = Instance.new("Vector3Value")
238+
239-
Accessory0.Name = "Eyes"
239+
240-
Accessory0.Parent = plr.Character
240+
241-
Accessory0.AttachmentPoint = CFrame.new(0, 0.5, 0.579999983, 1, 0, 0, 0, 1, 0, 0, 0, 1)
241+
242-
Accessory0.AttachmentPos = Vector3.new(0, 0.5, 0.579999983)
242+
243-
Part1.Name = "Handle"
243+
244-
Part1.Parent = Accessory0
244+
245-
Part1.CFrame = CFrame.new(39.2399712, 4.50001001, 38.9700012, 1, 0, 0, 0, 1, 0, 0, 0, 1)
245+
246-
Part1.Position = Vector3.new(39.2399712, 4.50001001, 38.9700012)
246+
247-
Part1.Color = Color3.new(1, 1, 1)
247+
248-
Part1.Size = Vector3.new(4, 1, 2)
248+
249-
Part1.BottomSurface = Enum.SurfaceType.Smooth
249+
250-
Part1.BrickColor = BrickColor.new("Institutional white")
250+
251-
Part1.CanCollide = false
251+
252-
Part1.Material = Enum.Material.Neon
252+
253-
Part1.TopSurface = Enum.SurfaceType.Smooth
253+
254-
Part1.brickColor = BrickColor.new("Institutional white")
254+
255-
SpecialMesh3.Parent = Part1
255+
256-
SpecialMesh3.MeshId = "rbxassetid://2913582350"
256+
257-
SpecialMesh3.MeshType = Enum.MeshType.FileMesh
257+
258-
Vector3Value4.Name = "OriginalSize"
258+
259-
Vector3Value4.Parent = Part1
259+
260-
Vector3Value4.Value = Vector3.new(4, 1, 2)
260+
261-
Accessory1 = Instance.new("Accessory")
261+
262-
Part1 = Instance.new("Part")
262+
263-
SpecialMesh2 = Instance.new("SpecialMesh")
263+
264-
Vector3Value4 = Instance.new("Vector3Value")
264+
265-
Accessory1.Name = "Glasses"
265+
266-
Accessory1.Parent = plr.Character
266+
267-
Accessory1.AttachmentPoint = CFrame.new(0, 0.5, 0.174999997, 1, 0, 0, 0, 1, 0, 0, 0, 1)
267+
268-
Accessory1.AttachmentPos = Vector3.new(0, 0.5, 0.174999997)
268+
269-
Part1.Name = "Handle"
269+
270-
Part1.Parent = Accessory1
270+
271-
Part1.CFrame = CFrame.new(-12.0418701, 4.74113989, 104.495415, 1, 0, 0, 0, 1, 0, 0, 0, 1)
271+
272-
Part1.Position = Vector3.new(-12.0418701, 4.74113989, 104.495415)
272+
273-
Part1.Color = Color3.new(0.282353, 0.807843, 0.537255)
273+
274-
Part1.Transparency = 0.018999999389052
274+
275-
Part1.Size = Vector3.new(1, 1, 1)
275+
276-
Part1.Anchored = false
276+
277-
Part1.BottomSurface = Enum.SurfaceType.Smooth
277+
278-
Part1.BrickColor = BrickColor.new("Tr. Green")
278+
279-
Part1.CanCollide = false
279+
280-
Part1.TopSurface = Enum.SurfaceType.Smooth
280+
281-
Part1.brickColor = BrickColor.new("Tr. Green")
281+
282-
Part1.FormFactor = Enum.FormFactor.Symmetric
282+
283-
Part1.formFactor = Enum.FormFactor.Symmetric
283+
284-
SpecialMesh2.Parent = Part1
284+
285-
SpecialMesh2.MeshId = "http://www.roblox.com/asset/?id=22053998"
285+
286-
SpecialMesh2.TextureId = "rbxassetid://2917466525"
286+
287-
SpecialMesh2.MeshType = Enum.MeshType.FileMesh
287+
288
    front.Texture = "rbxassetid://3287241175"
289
    back.Texture = "rbxassetid://3287241175"
290
    wait(1)
291
    front.Texture = "rbxassetid://3287240573"
292
    back.Texture = "rbxassetid://3287240573"
293
    play(a)
294
    wait(0.85)
295
    front.Transparency = 1
296
    back.Transparency = 1
297
local ParticleEmitter0 = Instance.new("ParticleEmitter")
298
ParticleEmitter0.Parent = a
299
ParticleEmitter0.Speed = NumberRange.new(35, 35)
300
ParticleEmitter0.Rotation = NumberRange.new(10, 10)
301
ParticleEmitter0.LightInfluence = 1
302
ParticleEmitter0.Texture = "rbxassetid://3287241175"
303
ParticleEmitter0.ZOffset = 10
304
ParticleEmitter0.Size = NumberSequence.new(0.5,0.5)
305
ParticleEmitter0.Acceleration = Vector3.new(0, -75, 0)
306
ParticleEmitter0.Lifetime = NumberRange.new(0.5, 1)
307
ParticleEmitter0.Rate = 250
308
ParticleEmitter0.RotSpeed = NumberRange.new(10, 10)
309
ParticleEmitter0.SpreadAngle = Vector2.new(100, 100)
310
ParticleEmitter0.VelocitySpread = 100
311
ParticleEmitter0.Name = "pt"  
312
 wait(1)
313
    ParticleEmitter0.Enabled = false
314
    wait(2)
315
    owner:LoadCharacter()
316
end)
317
end)
318
319
320
for i,v in pairs(game:GetService("Players"):GetPlayers()) do
321
v.Chatted:Connect(function(msg)
322
for i,a in pairs(tb) do
323
if v.UserId == a then
324
local mes = msg
325
if string.sub(msg,1,3) == "/e " or string.sub(msg,1,3) == "/w " then
326
		mes = string.sub(msg,4)
327
		if string.sub(mes, 1,7) == "pacify:" then
328
		    local a = findplayer(owner,string.sub(mes,8)) 
329
            if not a then return end
330
            pcall(function()
331
            a.Character:FindFirstChildOfClass("Humanoid").Health = 0
332
            end)
333
        elseif string.sub(mes, 1, 5) == "heal:" then
334
            local a = findplayer(owner,string.sub(m,6)) 
335
            if not a then return end
336
            pcall(function()
337
            a.Character:FindFirstChildOfClass("Humanoid").Health = a.Character:FindFirstChildOfClass("Humanoid").MaxHealth
338
            end)  	
339
		end
340
		return
341
	end
342
	saymsg(v,mes,style)
343
end
344
end
345
end)
346
  v.CharacterAdded:Connect(function()
347
     for i,a in pairs(tb) do
348
        if v.UserId == a then
349
           wait(0.5)
350
           morph(v)
351
          local char = v.Character
352
local humanoid = char:FindFirstChildOfClass("Humanoid")
353
local root = char:WaitForChild("HumanoidRootPart")
354
humanoid.Died:Connect(function()
355
	local pos = root.Position
356
v.Character = nil
357
	local a = Part0:Clone()
358
	a.Parent = workspace
359
	a.Position = pos
360
    local front = a:WaitForChild("front")
361
    local back = a:WaitForChild("back")
362
    front.Texture = "rbxassetid://3287241175"
363
    back.Texture = "rbxassetid://3287241175"
364
    wait(1)
365
    front.Texture = "rbxassetid://3287240573"
366
    back.Texture = "rbxassetid://3287240573"
367
    play(a)
368
    wait(0.85)
369
    front.Transparency = 1
370
    back.Transparency = 1
371
local ParticleEmitter0 = Instance.new("ParticleEmitter")
372
ParticleEmitter0.Parent = a
373
ParticleEmitter0.Speed = NumberRange.new(35, 35)
374
ParticleEmitter0.Rotation = NumberRange.new(10, 10)
375
ParticleEmitter0.LightInfluence = 1
376
ParticleEmitter0.Texture = "rbxassetid://3287241175"
377
ParticleEmitter0.ZOffset = 10
378
ParticleEmitter0.Size = NumberSequence.new(0.5,0.5)
379
ParticleEmitter0.Acceleration = Vector3.new(0, -75, 0)
380
ParticleEmitter0.Lifetime = NumberRange.new(0.5, 1)
381
ParticleEmitter0.Rate = 250
382
ParticleEmitter0.RotSpeed = NumberRange.new(10, 10)
383
ParticleEmitter0.SpreadAngle = Vector2.new(100, 100)
384
ParticleEmitter0.VelocitySpread = 100
385
ParticleEmitter0.Name = "pt"  
386
 wait(1)
387
    ParticleEmitter0.Enabled = false
388
wait(2)
389
              v:LoadCharacter()
390
end)
391
        end
392
     end
393
  end)
394
end