View difference between Paste ID: kdQ1JC63 and aSCKFRCz
SHOW: | | - or go back to the newest paste.
1
--o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-<>[The Sorcerer Script]<>-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-
2
3-
Player = game.Players.lx4lvealex2 -- try using LocalPlayer instead of your name :p
3+
Player = game.Players.yapjingwei -- try using LocalPlayer instead of your name :p
4
Character = Player.Character
5
Children = Character:GetChildren()
6
IN = Instance.new
7
CF = CFrame.new
8
V3 = Vector3.new
9
BC = BrickColor.new
10
11
--[Turning the Character]--
12
13
Blast = IN("Part", Workspace)
14
Blast.FormFactor = "Symmetric"
15
Blast.Size = V3(1, 1, 1)
16
Blast.CanCollide = false
17
Blast.TopSurface = 0
18
Blast.BottomSurface = 0
19
Blast.BrickColor = BC("Really black")
20
21
BM = Instance.new("SpecialMesh", Blast)
22
BM.MeshType = "Sphere"
23
24
W1 = IN("Weld", Blast)
25
W1.Part0 = Blast
26
W1.Part1 = Character.Torso
27
28
for i = 1, 20 do
29
        BM.Scale = BM.Scale + Vector3.new(1, 1, 1)
30
        wait()
31
end
32
33
for i = 1, 10 do
34
        
35
        Wave = IN("Part", Workspace)
36
        Wave.FormFactor = "Symmetric"
37
        Wave.BrickColor = BC("Really red")
38
        Wave.Size = V3(1, 1, 1)
39
        Wave.CanCollide = false
40
        
41
        WM = IN("SpecialMesh", Wave)
42
        WM.MeshId = "http://www.roblox.com/Asset/?id=9756362"
43
        
44
        W2 = IN("Weld", Wave)
45
        W2.Part0 = Wave
46
        W2.Part1 = Character.Torso
47
        W2.C0 = W1.C0 + Vector3.new(0, 1.5, 0)
48
        
49
        for i = 1, 20 do
50
                WM.Scale = WM.Scale + Vector3.new(2, 0, 2)
51
                wait()
52
        end
53
        Wave:Destroy()
54
end
55
Blast:Destroy()
56
57
--[Cleaning Character]--
58
59
Eye = IN("Part", Character)
60
Eye.FormFactor = "Symmetric"
61
Eye.Size = V3(1, 1, 1)
62
Eye.CanCollide = false
63
Eye.TopSurface = 0
64
Eye.BottomSurface = 0
65
Eye.BrickColor = BC("Really red")
66
67
EM = IN("SpecialMesh", Eye)
68
EM.MeshType = "Sphere"
69
EM.Scale = V3(0.45, 0.45, 0.45)
70
71
Border = IN("Part", Character)
72
Border.FormFactor = "Symmetric"
73
Border.Size = V3(1, 1, 1)
74
Border.CanCollide = false
75
Border.BrickColor = BC("Really black")
76
77
BM = IN("SpecialMesh", Border)
78
BM.MeshId = "http://www.roblox.com/asset/?id=3270017"
79
BM.Scale = V3(0.5, 0.5, 1)
80
81
Pupil = IN("Part", Character)
82
Pupil.FormFactor = "Symmetric"
83
Pupil.Size = V3(1, 1, 1)
84
Pupil.CanCollide = false
85
Pupil.BrickColor = BC("Really black")
86
87
PM = IN("CylinderMesh", Pupil)
88
PM.Scale = V3(0.3, 0.05, 0.3)
89
90
Hat = IN("Hat", Character)
91
Hat.AttachmentPos = Vector3.new(-0.05,-0.65,0)
92
Hat.Name = "Cooky Wizard"
93
94
HH = IN("Part")
95
HH.Name = "Handle"
96
HH.Size = V3(1, 1, 1)
97
HH.Rotation = V3(-89.83, 89.68, 89.585)
98
99
HM = IN("SpecialMesh", HH)
100
HM.MeshId = "http://www.roblox.com/asset/?id="
101
HM.TextureId = "http://www.roblox.com/asset/?id="
102
103
HH.Parent = Hat
104
105
for i = 1, #Children do
106
        if Children[i].ClassName == "Hat" then
107
                Children[i]:Destroy()
108
        end
109
        
110
        if Children[i].ClassName == "Part" then
111
                Children[i].BrickColor = BC("Really red")
112
        end
113
end
114
115
Character.Head.face.Texture = "http://www.roblox.com/asset/?id=29588546"
116
117
Character.Shirt:Destroy()
118
Character.Pants:Destroy()
119
Character["Shirt Graphic"]:Destroy()
120
121
--[Welding]--
122
123
W3 = IN("Weld", Eye)
124
W3.Part0 = Eye
125
W3.Part1 = Character.Torso
126
W3.C0 = W3.C0 + Vector3.new(0, -0.3, 0.5)
127
128
W4 = IN("Weld", Border)
129
W4.Part0 = Border
130
W4.Part1 = Eye
131
132
W5 = IN("Weld", Pupil)
133
W5.Part0 = Pupil
134
W5.Part1 = Eye
135
W5.C0 = W5.C0 + Vector3.new(0, 0, 0.1)
136
W5.C1 = W5.C1 * CFrame.Angles(0, 0, 45.55)
137
138
function Weld(x,y)
139
        local W = Instance.new("Weld")
140
        W.Part0 = x
141
        W.Part1 = y
142
        local CJ = CFrame.new(x.Position)
143
        local C0 = x.CFrame:inverse()*CJ
144
        local C1 = y.CFrame:inverse()*CJ
145
        W.C0 = C0
146
        W.C1 = C1
147
        W.Parent = x
148
        
149
end
150
151
function Get(A)
152
        if A.className == "Part" then
153
                Weld(game.Workspace.Sorceriurs.Handle, A)
154
                A.Anchored = false
155
                A.CanCollide = false
156
        else
157
                local C = A:GetChildren()
158
                for i=1, #C do
159
                Get(C[i])
160
                end
161
        end
162
end
163
164
function Finale()
165
        Get(game.Workspace.Sorceriurs)
166
end
167
168
--[Sorcerius]--
169
170
Obj1 = Instance.new("Model")
171
Obj1.Name = "Sorceriurs"
172
Obj1.Parent = Workspace
173
174
Obj2 = Instance.new("Part")
175
Obj2.CFrame = CFrame.new(Vector3.new(59.9000015, 7.99000025, 0.900000036)) * CFrame.Angles(0, 1.5707963705063, 0)
176
Obj2.FormFactor = Enum.FormFactor.Symmetric
177
Obj2.Transparency = 0.5
178
Obj2.TopSurface = Enum.SurfaceType.Smooth
179
Obj2.BottomSurface = Enum.SurfaceType.Smooth
180
Obj2.Size = Vector3.new(1, 1, 1)
181
Obj2.Anchored = true
182
Obj2.BrickColor = BrickColor.new("Bright red")
183
Obj2.Friction = 0.30000001192093
184
Obj2.Shape = Enum.PartType.Block
185
Obj2.Name = "BlobbyblobBuild_Player1"
186
Obj2.Parent = Obj1
187
188
Obj3 = Instance.new("SpecialMesh")
189
Obj3.MeshType = Enum.MeshType.Sphere
190
Obj3.Parent = Obj2
191
192
Obj4 = Instance.new("Part")
193
Obj4.CFrame = CFrame.new(Vector3.new(59.9000015, 7.99000025, 0.900000036)) * CFrame.Angles(0, 1.5707963705063, 0)
194
Obj4.FormFactor = Enum.FormFactor.Symmetric
195
Obj4.TopSurface = Enum.SurfaceType.Smooth
196
Obj4.BottomSurface = Enum.SurfaceType.Smooth
197
Obj4.Size = Vector3.new(1, 1, 1)
198
Obj4.Anchored = true
199
Obj4.BrickColor = BrickColor.new("Really black")
200
Obj4.Friction = 0.30000001192093
201
Obj4.Shape = Enum.PartType.Block
202
Obj4.Name = "BlobbyblobBuild_Player1"
203
Obj4.Parent = Obj1
204
205
Obj5 = Instance.new("SpecialMesh")
206
Obj5.MeshType = Enum.MeshType.Sphere
207
Obj5.Scale = Vector3.new(0.5, 0.5, 0.5)
208
Obj5.Parent = Obj4
209
210
Obj6 = Instance.new("Part")
211
Obj6.CFrame = CFrame.new(Vector3.new(59.9000015, 5.39000034, 0.900000036)) * CFrame.Angles(-3.1415927410126, 0, -3.1415927410126)
212
Obj6.FormFactor = Enum.FormFactor.Symmetric
213
Obj6.TopSurface = Enum.SurfaceType.Smooth
214
Obj6.BottomSurface = Enum.SurfaceType.Smooth
215
Obj6.Material = Enum.Material.SmoothPlastic
216
Obj6.Size = Vector3.new(1, 5, 1)
217
Obj6.Anchored = true
218
Obj6.BrickColor = BrickColor.new("Really black")
219
Obj6.Friction = 0.30000001192093
220
Obj6.Shape = Enum.PartType.Block
221
Obj6.Name = "Handle"
222
Obj6.Parent = Obj1
223
224
Obj7 = Instance.new("CylinderMesh")
225
Obj7.Scale = Vector3.new(1, 1, 0.200000003)
226
Obj7.Parent = Obj6
227
228
Obj8 = Instance.new("Part")
229
Obj8.CFrame = CFrame.new(Vector3.new(59.9000015, 7.19000053, 0.900000036)) * CFrame.Angles(-0.78539675474167, 0, -3.1415927410126)
230
Obj8.FormFactor = Enum.FormFactor.Symmetric
231
Obj8.TopSurface = Enum.SurfaceType.Smooth
232
Obj8.BottomSurface = Enum.SurfaceType.Smooth
233
Obj8.Size = Vector3.new(1, 1, 1)
234
Obj8.Anchored = true
235
Obj8.BrickColor = BrickColor.new("Bright red")
236
Obj8.Friction = 0.30000001192093
237
Obj8.Shape = Enum.PartType.Block
238
Obj8.Name = "BlobbyblobBuild_Player1"
239
Obj8.Parent = Obj1
240
241
Obj9 = Instance.new("SpecialMesh")
242
Obj9.MeshType = Enum.MeshType.FileMesh
243
Obj9.Scale = Vector3.new(0.5, 0.5, 0.5)
244
Obj9.MeshId = "http://www.roblox.com/asset/?id=3270017"
245
Obj9.Parent = Obj8
246
247
Obj10 = Instance.new("Part")
248
Obj10.CFrame = CFrame.new(Vector3.new(59.9000015, 7.19000053, 0.900000036)) * CFrame.Angles(-1.5707963705063, 0, -3.1415927410126)
249
Obj10.FormFactor = Enum.FormFactor.Symmetric
250
Obj10.TopSurface = Enum.SurfaceType.Smooth
251
Obj10.BottomSurface = Enum.SurfaceType.Smooth
252
Obj10.Material = Enum.Material.SmoothPlastic
253
Obj10.Size = Vector3.new(1, 1, 1)
254
Obj10.Anchored = true
255
Obj10.BrickColor = BrickColor.new("Really black")
256
Obj10.Friction = 0.30000001192093
257
Obj10.Shape = Enum.PartType.Block
258
Obj10.Name = "BlobbyblobBuild_Player1"
259
Obj10.Parent = Obj1
260
261
Obj11 = Instance.new("CylinderMesh")
262
Obj11.Scale = Vector3.new(1, 1, 0.200000003)
263
Obj11.Parent = Obj10
264
265
Obj12 = Instance.new("Part")
266
Obj12.CFrame = CFrame.new(Vector3.new(59.9000015, 2.69000006, 0.900000036)) * CFrame.Angles(-3.1415927410126, 0, -3.1415927410126)
267
Obj12.FormFactor = Enum.FormFactor.Symmetric
268
Obj12.TopSurface = Enum.SurfaceType.Smooth
269
Obj12.BottomSurface = Enum.SurfaceType.Smooth
270
Obj12.Material = Enum.Material.SmoothPlastic
271
Obj12.Size = Vector3.new(1, 1, 1)
272
Obj12.Anchored = true
273
Obj12.Friction = 0.30000001192093
274
Obj12.Shape = Enum.PartType.Block
275
Obj12.Name = "BlobbyblobBuild_Player1"
276
Obj12.Parent = Obj1
277
278
Obj13 = Instance.new("CylinderMesh")
279
Obj13.Scale = Vector3.new(1, 0.5, 0.300000012)
280
Obj13.Parent = Obj12
281
282
Obj14 = Instance.new("Part")
283
Obj14.CFrame = CFrame.new(Vector3.new(59.840004, 5.39000034, 0.900000036)) * CFrame.Angles(-3.1415927410126, 0, -3.1415927410126)
284
Obj14.FormFactor = Enum.FormFactor.Symmetric
285
Obj14.TopSurface = Enum.SurfaceType.Smooth
286
Obj14.BottomSurface = Enum.SurfaceType.Smooth
287
Obj14.Material = Enum.Material.SmoothPlastic
288
Obj14.Size = Vector3.new(1, 5, 1)
289
Obj14.Anchored = true
290
Obj14.BrickColor = BrickColor.new("Bright red")
291
Obj14.Friction = 0.30000001192093
292
Obj14.Shape = Enum.PartType.Block
293
Obj14.Name = "BlobbyblobBuild_Player1"
294
Obj14.Parent = Obj1
295
296
Obj15 = Instance.new("CylinderMesh")
297
Obj15.Scale = Vector3.new(1, 1, 0.100000001)
298
Obj15.Parent = Obj14
299
300
Obj16 = Instance.new("Part")
301
Obj16.CFrame = CFrame.new(Vector3.new(59.9000015, 7.19000053, 1.50000012)) * CFrame.Angles(0, 1.5707963705063, 0)
302
Obj16.FormFactor = Enum.FormFactor.Symmetric
303
Obj16.Size = Vector3.new(1, 1, 1)
304
Obj16.Anchored = true
305
Obj16.BrickColor = BrickColor.new("Bright red")
306
Obj16.Friction = 0.30000001192093
307
Obj16.Shape = Enum.PartType.Block
308
Obj16.Name = "BlobbyblobBuild_Player1"
309
Obj16.Parent = Obj1
310
311
Obj17 = Instance.new("SpecialMesh")
312
Obj17.MeshType = Enum.MeshType.FileMesh
313
Obj17.Scale = Vector3.new(0.200000003, 1.5, 0.200000003)
314
Obj17.MeshId = "http://www.roblox.com/Asset/?id=9756362"
315
Obj17.Parent = Obj16
316
317
Obj18 = Instance.new("Part")
318
Obj18.CFrame = CFrame.new(Vector3.new(59.9000015, 7.19000053, 0.900000036)) * CFrame.Angles(-3.1415922641754, 0, -3.1415927410126)
319
Obj18.FormFactor = Enum.FormFactor.Symmetric
320
Obj18.TopSurface = Enum.SurfaceType.Smooth
321
Obj18.BottomSurface = Enum.SurfaceType.Smooth
322
Obj18.Size = Vector3.new(1, 1, 1)
323
Obj18.Anchored = true
324
Obj18.BrickColor = BrickColor.new("Bright red")
325
Obj18.Friction = 0.30000001192093
326
Obj18.Shape = Enum.PartType.Block
327
Obj18.Name = "BlobbyblobBuild_Player1"
328
Obj18.Parent = Obj1
329
330
Obj19 = Instance.new("SpecialMesh")
331
Obj19.MeshType = Enum.MeshType.FileMesh
332
Obj19.Scale = Vector3.new(0.5, 0.5, 0.5)
333
Obj19.MeshId = "http://www.roblox.com/asset/?id=3270017"
334
Obj19.Parent = Obj18
335
336
Obj20 = Instance.new("Part")
337
Obj20.CFrame = CFrame.new(Vector3.new(59.9000015, 7.19000053, 0.300000012)) * CFrame.Angles(0, 1.5707963705063, 0)
338
Obj20.FormFactor = Enum.FormFactor.Symmetric
339
Obj20.Size = Vector3.new(1, 1, 1)
340
Obj20.Anchored = true
341
Obj20.BrickColor = BrickColor.new("Bright red")
342
Obj20.Friction = 0.30000001192093
343
Obj20.Shape = Enum.PartType.Block
344
Obj20.Name = "BlobbyblobBuild_Player1"
345
Obj20.Parent = Obj1
346
347
Obj21 = Instance.new("SpecialMesh")
348
Obj21.MeshType = Enum.MeshType.FileMesh
349
Obj21.Scale = Vector3.new(0.200000003, 1.5, 0.200000003)
350
Obj21.MeshId = "http://www.roblox.com/Asset/?id=9756362"
351
Obj21.Parent = Obj20
352
353
Obj22 = Instance.new("Part")
354
Obj22.CFrame = CFrame.new(Vector3.new(59.9000015, 7.19000053, 0.900000036)) * CFrame.Angles(-2.3561933040619, 0, -3.1415927410126)
355
Obj22.FormFactor = Enum.FormFactor.Symmetric
356
Obj22.TopSurface = Enum.SurfaceType.Smooth
357
Obj22.BottomSurface = Enum.SurfaceType.Smooth
358
Obj22.Size = Vector3.new(1, 1, 1)
359
Obj22.Anchored = true
360
Obj22.BrickColor = BrickColor.new("Bright red")
361
Obj22.Friction = 0.30000001192093
362
Obj22.Shape = Enum.PartType.Block
363
Obj22.Name = "BlobbyblobBuild_Player1"
364
Obj22.Parent = Obj1
365
366
Obj23 = Instance.new("SpecialMesh")
367
Obj23.MeshType = Enum.MeshType.FileMesh
368
Obj23.Scale = Vector3.new(0.5, 0.5, 0.5)
369
Obj23.MeshId = "http://www.roblox.com/asset/?id=3270017"
370
Obj23.Parent = Obj22
371
372
Obj24 = Instance.new("Part")
373
Obj24.CFrame = CFrame.new(Vector3.new(59.9000015, 7.19000053, 0.900000036)) * CFrame.Angles(1.5707963705063, 0, -3.1415927410126)
374
Obj24.FormFactor = Enum.FormFactor.Symmetric
375
Obj24.TopSurface = Enum.SurfaceType.Smooth
376
Obj24.BottomSurface = Enum.SurfaceType.Smooth
377
Obj24.Size = Vector3.new(1, 1, 1)
378
Obj24.Anchored = true
379
Obj24.BrickColor = BrickColor.new("Bright red")
380
Obj24.Friction = 0.30000001192093
381
Obj24.Shape = Enum.PartType.Block
382
Obj24.Name = "BlobbyblobBuild_Player1"
383
Obj24.Parent = Obj1
384
385
Obj25 = Instance.new("SpecialMesh")
386
Obj25.MeshType = Enum.MeshType.FileMesh
387
Obj25.Scale = Vector3.new(0.5, 0.5, 0.5)
388
Obj25.MeshId = "http://www.roblox.com/asset/?id=3270017"
389
Obj25.Parent = Obj24
390
391
Obj26 = Instance.new("Part")
392
Obj26.CFrame = CFrame.new(Vector3.new(59.9600029, 5.39000034, 0.900000036)) * CFrame.Angles(-3.1415927410126, 0, -3.1415927410126)
393
Obj26.FormFactor = Enum.FormFactor.Symmetric
394
Obj26.TopSurface = Enum.SurfaceType.Smooth
395
Obj26.BottomSurface = Enum.SurfaceType.Smooth
396
Obj26.Material = Enum.Material.SmoothPlastic
397
Obj26.Size = Vector3.new(1, 5, 1)
398
Obj26.Anchored = true
399
Obj26.BrickColor = BrickColor.new("Bright red")
400
Obj26.Friction = 0.30000001192093
401
Obj26.Shape = Enum.PartType.Block
402
Obj26.Name = "BlobbyblobBuild_Player1"
403
Obj26.Parent = Obj1
404
405
Obj27 = Instance.new("CylinderMesh")
406
Obj27.Scale = Vector3.new(1, 1, 0.100000001)
407
Obj27.Parent = Obj26
408
409
Finale()
410
411
W0 = IN("Weld", game.Workspace.Sorceriurs.Handle)
412
W0.Part0 = game.Workspace.Sorceriurs.Handle
413
W0.Part1 = Character["Left Arm"]
414
W0.C0 = CFrame.fromEulerAnglesXYZ(1.56,0,1.56) * CFrame.new(0, 1, 0)