View difference between Paste ID: 5DkSSQpc and LYZvb44a
SHOW: | | - or go back to the newest paste.
1-
ParticleSettings = {
1+
--Hi... Made by Meti2000.
2-
	Lifetime = 1,
2+
--ຕາຍ. ກະລຸນາ.
3-
	Texture = 'rbxassetid://1209757190',
3+
4-
	--Color1 is for UpperBody and Accessories, Color2 is for Lower Body
4+
local s = Instance.new("ScreenGui", game.CoreGui)
5-
	Color1 = ColorSequence.new(BrickColor.new('Deep orange').Color,BrickColor.new('Black').Color),
5+
local f = Instance.new("Frame", s)
6-
	Color2 = ColorSequence.new(BrickColor.new('Deep orange').Color,BrickColor.new('Bright red').Color),
6+
local mselect = Instance.new("TextButton", f)
7-
	AllBody = true,
7+
local mbox = Instance.new("TextBox", f)
8-
	UpperBodyOnly = false,
8+
local toggle = false
9-
	LowerBodyOnly = false,
9+
local Player = game.Players.LocalPlayer
10-
	Accessories = true,
10+
local Character = Player.Character
11-
	Extras = true,
11+
12-
	}
12+
f.Size = UDim2.new(0,300,0,350)
13-
m = game:service'Players'.LocalPlayer:GetMouse()
13+
f.BorderSizePixel = 0
14-
local p=game:service("Players").LocalPlayer
14+
f.BackgroundColor3 = Color3.new(0.301961, 0.301961, 0.301961)
15-
Instance.new("ForceField", game.Players.LocalPlayer.Character). Visible = false
15+
f.Transparency = 1
16-
local char=p.Character
16+
f.Position = UDim2.new(0.5,-150,0.5,-125)
17-
script.Parent=char
17+
f.Active = true
18-
local tor=char.Torso
18+
f.Draggable = true
19-
local hed=char.Head
19+
20-
local larm=char:FindFirstChild("Left Arm")
20+
MoosixID.Size = UDim2.new(0,250,0,50)
21-
local rarm=char:FindFirstChild("Right Arm")
21+
MoosixID.Position = UDim2.new(0,25,0.1,0)
22-
local lleg=char:FindFirstChild("Left Leg")
22+
MoosixID.BorderSizePixel = 0
23-
local rleg=char:FindFirstChild("Right Leg")
23+
MoosixID.Text = "ID"
24-
local hum=char.Humanoid
24+
MoosixID.Font = "Cartoon"
25-
local cam=workspace.CurrentCamera
25+
MoosixID.TextColor3 = Color3.new(255, 255,255)
26-
local root=char.HumanoidRootPart
26+
MoosixID.BackgroundColor3 = Color3.new(0, 0.666, 0)
27-
local mouse=p:GetMouse()
27+
MoosixID.FontSize = "Size18"
28-
local hb=game:service("RunService").Heartbeat
28+
MoosixID.ZIndex = 10
29-
local rs=game:service("RunService").Stepped
29+
30-
hum.MaxHealth= math.huge
30+
mselect.Size = UDim2.new(0,250,0,50)
31-
hum.Health=hum.MaxHealth
31+
mselect.Position = UDim2.new(0,25,0.6,0)
32-
local hair4 = Instance.new("Part",char)
32+
mselect.BorderSizePixel = 0
33-
hair4.Material="Neon"
33+
mselect.Text = "Play ID"
34-
hair4.CanCollide=false
34+
mselect.Font = "SourceSansBold"
35-
hair4.Size=Vector3.new(.5,2,0)
35+
mselect.TextColor3 = Color3.new(255,255,255)
36-
hair4.BrickColor=BrickColor.Red()
36+
mselect.BackgroundColor3 = Color3.new(0.999, 0.666, 1)
37-
hair4.Transparency=0
37+
mselect.FontSize = "Size18"
38
mselect.ZIndex = 10
39
 
40
mselect.MouseButton1Click:connect(function()
41-
local w = Instance.new("Weld",hair4)
41+
game.Players.LocalPlayer.Character.Humanoid.MaxHealth = math.huge
42-
w.Part1=hair4
42+
    if toggle == false then
43-
w.Part0=tor
43+
        loadPart()
44-
w.C0=CFrame.new(-0.7,0,0.5)
44+
        toggle = true
45
    elseif toggle == true then
46-
local hair3 = Instance.new("Part",char)
46+
        loadPart()
47-
hair3.Material="Neon"
47+
        toggle = false
48-
hair3.CanCollide=false
48+
49-
hair3.Size=Vector3.new(.5,2,0)
49+
end)
50-
hair3.BrickColor=BrickColor.Red()
50+
51-
hair3.Transparency=0
51+
function loadPart()
52
    for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
53
        if v.Name == "MoosicBloc" and v.ClassName == "Part" then
54
            v:Remove()
55-
local w = Instance.new("Weld",hair3)
55+
56-
w.Part1=hair3
56+
57-
w.Part0=tor
57+
local Part = Instance.new("Part", game.Players.LocalPlayer.Character)
58-
w.C0=CFrame.new(0.7,0,0.5)
58+
Part.CanCollide = false
59-
-----------------------------------------------------
59+
Part.Shape = "Block"
60-
----------------------------------------
60+
Part.Anchored = false
61-
local bladee = Instance.new("ParticleEmitter",hair4)
61+
Part.Locked = true
62-
bladee.Texture = "http://www.roblox.com/asset/?id=298984512"
62+
Part.Name = "MoosicBloc"
63-
bladee.LightEmission = 0.625
63+
Part.Transparency = 0
64-
bladee.EmissionDirection = "Left"
64+
Part.Material = "Neon"
65-
bladee.LockedToPart = true
65+
66-
bladee.Color = ParticleSettings.Color2
66+
while true do wait()
67-
bladee.Rate = 100000
67+
Part.BrickColor = BrickColor.new(math.random())
68-
bladee.Lifetime = NumberRange.new(.5)
68+
local BlocMesh = Instance.new("Sphere", Part)
69-
bladee.Size = NumberSequence.new({NumberSequenceKeypoint.new(0,2,0),NumberSequenceKeypoint.new(1,0,0)})
69+
BlocMesh.Scale = Vector3.new(1,1,1)
70-
bladee.Speed = NumberRange.new(5)
70+
71-
bladee.Acceleration = Vector3.new(-30,40,0)
71+
72
local Sound = Instance.new("Sound", Part)
73-
local bladee3 = Instance.new("ParticleEmitter",hair3)
73+
Sound.SoundId = "https://www.roblox.com/asset/?id="..MoosixID.Text
74-
bladee3.Texture = "http://www.roblox.com/asset/?id=298984512"
74+
Sound.EmitterSize = math.huge
75-
bladee3.LightEmission = 0.625
75+
Sound.MaxDistance = math.huge
76-
bladee3.EmissionDirection = "Right"
76+
Sound.Looped = true
77-
bladee3.LockedToPart = true
77+
Sound.Pitch = 1
78-
bladee3.Color = ParticleSettings.Color2
78+
Sound.Name = "Sound"
79-
bladee3.Rate = 100000
79+
Sound.Volume = 10
80-
bladee3.Lifetime = NumberRange.new(.5)
80+
Sound:Play()
81-
bladee3.Size = NumberSequence.new({NumberSequenceKeypoint.new(0,2,0),NumberSequenceKeypoint.new(1,0,0)})
81+
82-
bladee3.Speed = NumberRange.new(5)
82+
Part.CFrame = CFrame.new(game.Players.LocalPlayer.Character.HumanoidRootPart.Position) * CFrame.new(0,3,0)
83-
bladee3.Acceleration = Vector3.new(30,40,0)
83+
local bp = Instance.new("BodyPosition", Part)
84-
m.KeyDown:connect(function(k)
84+
bp.Position = Character:FindFirstChild("Torso").CFrame * CFrame.new(0, 3, 0).p
85-
    if k == "m" then
85+
bp.MaxForce = Vector3.new(10000,10000,10000)
86-
    if (hum ~= nil) then    -- if a humanoid exists, then
86+
bp.P = 100000
87-
        hum.Sit = true  -- make the humanoid sit!
87+
88
while true do wait()
89
bp.Position = Character:FindFirstChild("Torso").CFrame * CFrame.new(0, 3, 0).p
90-
    end)
90+
local alg = math.floor(Sound.PlaybackLoudness)/50
91-
do
91+
BlocMesh.Scale = Vector3.new(1+alg,1+alg,1+alg)
92-
    local filteredMessages = { ['____'] = '___' };
92+
93-
    local onPropertyChanged = function (obj)  
93+
94-
        if (obj:isDescendantOf (workspace)) then  
94+
end