SHOW:
|
|
- or go back to the newest paste.
| 1 | --[[ | |
| 2 | ||
| 3 | Created by Sharkringan kthx | |
| 4 | ||
| 5 | --]] | |
| 6 | ||
| 7 | wait(1/60) | |
| 8 | ||
| 9 | plr = game:service'Players'.LocalPlayer | |
| 10 | char = plr.Character | |
| 11 | root = char:FindFirstChild'HumanoidRootPart' | |
| 12 | hum = char:FindFirstChildOfClass'Humanoid' | |
| 13 | mouse = plr:GetMouse() | |
| 14 | clones = {}
| |
| 15 | followplr = true | |
| 16 | radius = 25 | |
| 17 | ||
| 18 | if char.Head:FindFirstChild'face' then | |
| 19 | char.Head.face:Destroy() | |
| 20 | end | |
| 21 | ||
| 22 | for _, a in pairs(char:children()) do | |
| 23 | if a:IsA'Part' then | |
| 24 | a.Transparency = 1 | |
| 25 | elseif a:IsA'Accessory' then | |
| 26 | a:Destroy() | |
| 27 | end | |
| 28 | end | |
| 29 | ||
| 30 | eyes = Instance.new('Part', char)
| |
| 31 | eyes.Anchored = false | |
| 32 | eyes.Name = "Eyes" | |
| 33 | eyes.Size = Vector3.new(0.22, 0.052, 0.105) | |
| 34 | eyesm = Instance.new('SpecialMesh', eyes)
| |
| 35 | eyesm.Scale = Vector3.new(0.039, 0.039, 0.039) | |
| 36 | eyesm.MeshId = "rbxassetid://1300138314" | |
| 37 | eyesm.TextureId = "rbxassetid://1300129774" | |
| 38 | ||
| 39 | body = Instance.new('Part', char)
| |
| 40 | body.Anchored = false | |
| 41 | body.Name = "Body" | |
| 42 | body.Size = Vector3.new(0.07, 0.062, 0.078) | |
| 43 | bodym = Instance.new('SpecialMesh', body)
| |
| 44 | bodym.Scale = Vector3.new(0.039, 0.039, 0.039) | |
| 45 | bodym.MeshId = "rbxassetid://1300136843" | |
| 46 | - | bodym.TextureId = "rbxassetid://1300137893" |
| 46 | + | |
| 47 | weld1 = Instance.new('Weld', eyes)
| |
| 48 | weld1.Part0 = eyes | |
| 49 | weld1.Part1 = root | |
| 50 | weld1.C0 = CFrame.new(0,1.55,.2) | |
| 51 | weld2 = Instance.new('Weld', body)
| |
| 52 | weld2.Part0 = body | |
| 53 | weld2.Part1 = root | |
| 54 | weld2.C0 = CFrame.new(0,2.1,0) | |
| 55 | local music=Instance.new("Sound",char.Torso)
| |
| 56 | music.SoundId="rbxassetid://1319438783" | |
| 57 | music.Volume = 2.5 | |
| 58 | music.Looped=true | |
| 59 | music:Play() | |
| 60 | TheWay1 = Instance.new('Sound', body)
| |
| 61 | TheWay1.SoundId = "rbxassetid://1320393438" | |
| 62 | TheWay1.Volume = 3 | |
| 63 | TheWay1.Name = "TheWay1" | |
| 64 | TheWay2 = Instance.new('Sound', body)
| |
| 65 | TheWay2.SoundId = "rbxassetid://1295525558" | |
| 66 | TheWay2.Volume = 3 | |
| 67 | TheWay2.Name = "TheWay2" | |
| 68 | Spit = Instance.new('Sound', body)
| |
| 69 | Spit.SoundId = "rbxassetid://1322795266" | |
| 70 | Spit.Volume = 3 | |
| 71 | Spit.Name = "Spit" | |
| 72 | Click = Instance.new('Sound', body)
| |
| 73 | Click.SoundId = "rbxassetid://1335379417" | |
| 74 | Click.Volume = 3 | |
| 75 | ||
| 76 | num = 1 | |
| 77 | cooldown = false | |
| 78 | rand = math.random(1,2) | |
| 79 | ||
| 80 | for i = 1,10 do | |
| 81 | wait() | |
| 82 | char.Archivable = true | |
| 83 | clone = char:Clone() | |
| 84 | for _, a in pairs(clone:children()) do | |
| 85 | if a.Name == "Right Arm" or a.Name == "UpperRightArm" then | |
| 86 | a:Destroy() | |
| 87 | elseif a.Name == 'Left Arm' or a.Name == 'UpperLeftArm' then | |
| 88 | a:Destroy() | |
| 89 | elseif a.Name == "Torso" or a.Name == "UpperTorso" then | |
| 90 | if a.Sound then | |
| 91 | a.Sound:Remove() | |
| 92 | end | |
| 93 | end | |
| 94 | end | |
| 95 | table.insert(clones,clone) | |
| 96 | end | |
| 97 | ||
| 98 | for _, a in pairs(clones) do | |
| 99 | a.Parent = char | |
| 100 | a:MoveTo(root.Position + Vector3.new(math.random(1,10),math.random(1,10),math.random(1,10))) | |
| 101 | end | |
| 102 | ||
| 103 | function sfx1() | |
| 104 | for _, a in pairs(clones) do | |
| 105 | rand = math.random(1,2) | |
| 106 | if rand == 1 then | |
| 107 | a.Body['TheWay1'].Pitch = math.random(0.9,1) | |
| 108 | a.Body['TheWay1']:Play() | |
| 109 | elseif rand == 2 then | |
| 110 | a.Body['TheWay2'].Pitch = math.random(0.9,1) | |
| 111 | a.Body['TheWay2']:Play() | |
| 112 | end | |
| 113 | wait(math.random(0.4,0.6)) | |
| 114 | end | |
| 115 | end | |
| 116 | ||
| 117 | function sfx2() | |
| 118 | for _, a in pairs(clones) do | |
| 119 | a.Body.Spit.Pitch = math.random(0.9,1) | |
| 120 | a.Body.Spit:Play() | |
| 121 | wait(math.random(0.4,0.6)) | |
| 122 | end | |
| 123 | end | |
| 124 | ||
| 125 | mouse.KeyDown:connect(function(k) | |
| 126 | key = k:lower() | |
| 127 | if key == "e" and not cooldown then | |
| 128 | cooldown = true | |
| 129 | sfx1() | |
| 130 | wait(.7) | |
| 131 | cooldown = false | |
| 132 | elseif key == "r" and not cooldown then | |
| 133 | cooldown = true | |
| 134 | sfx2() | |
| 135 | wait(.7) | |
| 136 | cooldown = false | |
| 137 | end | |
| 138 | end) | |
| 139 | ||
| 140 | plr.Chatted:connect(function(m) | |
| 141 | if string.sub(m:lower(),1,15) == "bruddas, follow" then | |
| 142 | for _,v in pairs(game:service'Players':GetPlayers()) do | |
| 143 | if string.find(v.Name:lower(),string.sub(m:lower(),17,-1)) then | |
| 144 | stalking = v | |
| 145 | else | |
| 146 | stalking = plr | |
| 147 | end | |
| 148 | end | |
| 149 | elseif string.sub(m:lower(),1,16) == "bruddas, protect" then | |
| 150 | for _,v in pairs(game:service'Players':GetPlayers()) do | |
| 151 | if string.find(v.Name:lower(),string.sub(m:lower(),18,-1)) then | |
| 152 | protecting = v | |
| 153 | else | |
| 154 | protecting = nil | |
| 155 | end | |
| 156 | end | |
| 157 | end | |
| 158 | end) | |
| 159 | ||
| 160 | while wait(1) do | |
| 161 | number = #clones | |
| 162 | position = root.CFrame | |
| 163 | protecting = false | |
| 164 | if stalking == nil then | |
| 165 | followplr = true | |
| 166 | elseif stalking ~= nil then | |
| 167 | followplr = false | |
| 168 | end | |
| 169 | for _, a in pairs(clones) do | |
| 170 | if a:FindFirstChildOfClass'Humanoid' and followplr and not protecting then | |
| 171 | a:FindFirstChildOfClass'Humanoid':MoveTo(root.Position + Vector3.new(math.random(-10,10),0,math.random(-10,10))) | |
| 172 | end | |
| 173 | end | |
| 174 | if not protecting and not followplr and stalking ~= nil and stalking.Character:FindFirstChild'HumanoidRootPart' then | |
| 175 | for _, a in pairs(clones) do | |
| 176 | if a:FindFirstChildOfClass'Humanoid' then | |
| 177 | a:FindFirstChildOfClass'Humanoid':MoveTo(stalking.Character.HumanoidRootPart.Position + Vector3.new(math.random(-10,10),0,math.random(-10,10))) | |
| 178 | end | |
| 179 | end | |
| 180 | rand = math.random(1,10) | |
| 181 | if rand == 5 then | |
| 182 | for i = 1,3 do | |
| 183 | random = clones[math.random(1,#clones)] | |
| 184 | rand = math.random(1,2) | |
| 185 | if rand == 1 then | |
| 186 | random.Body['TheWay1']:Play() | |
| 187 | else | |
| 188 | random.Body['TheWay2']:Play() | |
| 189 | end | |
| 190 | end | |
| 191 | end | |
| 192 | end | |
| 193 | end |