SHOW:
|
|
- or go back to the newest paste.
| 1 | - | owner.CharacterAppearanceId = 272480200 |
| 1 | + | Player = owner |
| 2 | - | owner:LoadCharacter() |
| 2 | + | function Run(plr) |
| 3 | local CharacterAppearanceId = plr.CharacterAppearanceId | |
| 4 | plr.CharacterAppearanceId = 1152641101 | |
| 5 | plr:LoadCharacter() | |
| 6 | plr.Character.Head.Transparency = 1 | |
| 7 | plr.Character.Head.face:Remove() | |
| 8 | local ForceField = Instance.new("ForceField", plr.Character)
| |
| 9 | ForceField.Visible = false | |
| 10 | plr.CharacterAppearanceId = CharacterAppearanceId | |
| 11 | ||
| 12 | local ScreenGui = Instance.new("ScreenGui",plr.PlayerGui)
| |
| 13 | ScreenGui.Name = "MusicKA" | |
| 14 | plr.CharacterAdded:Connect(function() | |
| 15 | ScreenGui:Remove() | |
| 16 | end) | |
| 17 | local asd = Instance.new("TextButton",ScreenGui)
| |
| 18 | asd.BackgroundColor3 = Color3.new(0,0,0) | |
| 19 | asd.BorderColor3 = Color3.new(0,0,0) | |
| 20 | asd.Name = "MusicKA" | |
| 21 | asd.Position = UDim2.new(1,-150,1,-90) | |
| 22 | asd.Size = UDim2.new(0,150,0,45) | |
| 23 | asd.Font = "SourceSansBold" | |
| 24 | asd.FontSize = "Size32" | |
| 25 | asd.Text = "MusicKA" | |
| 26 | asd.TextColor3 = Color3.new(255,255,255) | |
| 27 | asd.MouseButton1Down:connect(function() | |
| 28 | local MusicKA = Instance.new("Sound",workspace)
| |
| 29 | MusicKA.SoundId = "http://www.roblox.com/asset/?id=718581626" | |
| 30 | MusicKA.Volume = 10 | |
| 31 | MusicKA:Play() | |
| 32 | if plr.Character:FindFirstChild("Torso") then
| |
| 33 | game:GetService("Chat"):Chat(plr.Character:FindFirstChild("Torso"),"Oh Yeah","White")
| |
| 34 | elseif plr.Character:FindFirstChild("UpperTorso") then
| |
| 35 | game:GetService("Chat"):Chat(plr.Character:FindFirstChild("UpperTorso"),"Oh Yeah","White")
| |
| 36 | end | |
| 37 | end) | |
| 38 | ||
| 39 | while plr.Character.Humanoid.Health > 0 do | |
| 40 | local Point1 = plr.Character.HumanoidRootPart.Position - Vector3.new(3,1,3) | |
| 41 | local Point2 = plr.Character.HumanoidRootPart.Position + Vector3.new(3,3,3) | |
| 42 | local Region = Region3.new(Point1,Point2) | |
| 43 | for _,Part in pairs(game.Workspace:FindPartsInRegion3(Region,nil,math.huge)) do | |
| 44 | if Part.Anchored == true then | |
| 45 | Part.Anchored = false | |
| 46 | Part.Rotation = Vector3.new(math.random(360), math.random(360), math.random(360)) | |
| 47 | end | |
| 48 | end | |
| 49 | wait(0.1) | |
| 50 | end | |
| 51 | end | |
| 52 | Run(Player) |