SHOW:
|
|
- or go back to the newest paste.
| 1 | - | print("Visualizer; ArtiMusic Volume; stopmusic;")
|
| 1 | + | |
| 2 | - | print("More; ArtiCube;createpart ArtiCube;test ArtiCube;biggersize")
|
| 2 | + | |
| 3 | - | print("ArtiCube;smallersize god;")
|
| 3 | + | |
| 4 | - | print("enjoy!")
|
| 4 | + | |
| 5 | ArtiCube = Instance.new("Part", game.Workspace.TameDoNotClick)
| |
| 6 | ArtiCube.Material = "Neon" | |
| 7 | ArtiCube.Size = Vector3.new(1, 1, 1) | |
| 8 | ArtiCube.BrickColor = BrickColor.new("Cyan")
| |
| 9 | ArtiCube.CFrame = CFrame.new(0, 10, 0) | |
| 10 | ArtiCube.Anchored = false | |
| 11 | ArtiCube.CanCollide = false | |
| 12 | Light = Instance.new("PointLight", ArtiCube)
| |
| 13 | Light.Brightness = 1 | |
| 14 | Light.Range = 20 | |
| 15 | Light.Color = Color3.new(0, 0, 255) | |
| 16 | Light.Enabled = true | |
| 17 | IntroSound = Instance.new("Sound", ArtiCube)
| |
| 18 | IntroSound.SoundId = "http://www.roblox.com/asset/?id=138208170" | |
| 19 | IntroSound.Volume = 1 | |
| 20 | IntroSound.Looped = false | |
| 21 | IntroSound.Parent = ArtiCube | |
| 22 | IntroSound:play() | |
| 23 | Sound = Instance.new("Sound", ArtiCube)
| |
| 24 | Sound.SoundId = "http://www.roblox.com/asset/?id=187544064" | |
| 25 | Sound.Volume = 0.1 | |
| 26 | Sound.Looped = true | |
| 27 | Sound.Parent = ArtiCube | |
| 28 | Sound:play() | |
| 29 | local PB = Instance.new("BodyPosition", ArtiCube)
| |
| 30 | PB.MaxForce = Vector3.new(10000, 10000, 10000) | |
| 31 | function onPlayerEntered(nP) ----------------- The OnPlayerEntered script (Long) | |
| 32 | Sound2 = Instance.new("Sound", ArtiCube)
| |
| 33 | Sound2.Volume = 3 | |
| 34 | Sound2.SoundId = "http://www.roblox.com/asset/?id=247824088" | |
| 35 | Sound2.Looped = false | |
| 36 | Sound2.Parent = ArtiCube | |
| 37 | ArtiCube.BrickColor = BrickColor.new("Lime green")
| |
| 38 | Light.Brightness = 0 | |
| 39 | Light.Range = 0 | |
| 40 | Light2 = Instance.new("PointLight", ArtiCube)
| |
| 41 | Light2.Brightness = 1 | |
| 42 | Light2.Range = 20 | |
| 43 | Light2.Color = Color3.new(0, 255, 0) | |
| 44 | Light2.Enabled = true | |
| 45 | Sound2:play() | |
| 46 | wait(4) | |
| 47 | ArtiCube.BrickColor = BrickColor.new("Cyan")
| |
| 48 | Light2:Remove() | |
| 49 | Light.Brightness = 1 | |
| 50 | Light.Range = 20 | |
| 51 | end | |
| 52 | game.Players.PlayerAdded:connect(onPlayerEntered) | |
| 53 | ||
| 54 | local list = { "yes", "no" }
| |
| 55 | local n = #list | |
| 56 | ||
| 57 | local Admins = {["TameDoNotClick"] = true}
| |
| 58 | ||
| 59 | game.Players.LocalPlayer.Chatted:connect(function(message) | |
| 60 | if message:sub(1,9) == "ArtiMusic" then | |
| 61 | local id = message:sub(11) | |
| 62 | sound1 = Instance.new("Sound", ArtiCube)
| |
| 63 | sound1.Volume = 1 | |
| 64 | sound1.Looped = true | |
| 65 | sound1.SoundId = "http://www.roblox.com/asset/?id=" .. id | |
| 66 | sound1:Play() | |
| 67 | while sound1.IsPlaying do | |
| 68 | ArtiCube.Size = Vector3.new(sound1.PlaybackLoudness/300, sound1.PlaybackLoudness/300, sound1.PlaybackLoudness/300) | |
| 69 | wait() | |
| 70 | end | |
| 71 | end | |
| 72 | end) | |
| 73 | ||
| 74 | game.Players.LocalPlayer.Chatted:connect(function(message) | |
| 75 | if message:sub(1,7) == "Volume;" then | |
| 76 | local vol = message:sub(8) | |
| 77 | sound1.Volume = 0 .. vol | |
| 78 | end | |
| 79 | end) | |
| 80 | ||
| 81 | PlayersTEXT = game.Players.LocalPlayer | |
| 82 | PlayersTEXT.Chatted:connect(function(Message) | |
| 83 | if Message == "ArtiCube;createpart" and Admins[game.Players.LocalPlayer.Name] then | |
| 84 | BLOCK = Instance.new("Part", workspace)
| |
| 85 | elseif Message == "ArtiCube;test" and Admins[game.Players.LocalPlayer.Name] then | |
| 86 | local ChatService = game:GetService("Chat")
| |
| 87 | ChatService:Chat(game.Workspace.TameDoNotClick.Head, "Test") | |
| 88 | elseif Message == "ArtiCube;biggersize" and Admins[game.Players.LocalPlayer.Name] then | |
| 89 | for i = 1, 10 do | |
| 90 | ArtiCube.Size = ArtiCube.Size + Vector3.new(0.1, 0.1, 0.1) | |
| 91 | wait() | |
| 92 | end | |
| 93 | elseif Message == "ArtiCube;smallersize" and Admins[game.Players.LocalPlayer.Name] then | |
| 94 | for i = 1, 10 do | |
| 95 | ArtiCube.Size = ArtiCube.Size - Vector3.new(0.1, 0.1, 0.1) | |
| 96 | wait() | |
| 97 | end | |
| 98 | elseif Message == "stopmusic;" and Admins[game.Players.LocalPlayer.Name] then | |
| 99 | sound1:Stop() | |
| 100 | wait(0.5) | |
| 101 | sound1:Remove() | |
| 102 | ArtiCube.Size = Vector3.new(1, 1, 1) | |
| 103 | elseif Message == "god;" and Admins[game.Players.LocalPlayer.Name] then | |
| 104 | game.Workspace.TameDoNotClick.Humanoid.MaxHealth = 50000000000000 | |
| 105 | wait(0.5) | |
| 106 | game.Workspace.TameDoNotClick.Humanoid.Health = 50000000000000 | |
| 107 | elseif Message == "MLGCube;" and Admins[game.Players.LocalPlayer.Name] then | |
| 108 | Handle = Instance.new("Part", ArtiCube)
| |
| 109 | Handle.CanCollide = false | |
| 110 | Mesh = Instance.new("FileMesh", Handle)
| |
| 111 | Mesh.MeshId = "http://www.roblox.com/asset/?id=121910245" | |
| 112 | Mesh.TextureId = "http://www.roblox.com/asset/?id=121947422" | |
| 113 | w1 = Instance.new("Weld", Handle)
| |
| 114 | w1.Name = "Handle_Weld" | |
| 115 | w1.Part0 = Handle | |
| 116 | w1.Part1 = ArtiCube | |
| 117 | w1.C0 = CFrame.new(0, 0, 0) | |
| 118 | wait(1) | |
| 119 | local ChatService = game:GetService("Chat")
| |
| 120 | ChatService:Chat(ArtiCube, "Hello dank m8's welcome to script builder 101") | |
| 121 | wait(3) | |
| 122 | local ChatService = game:GetService("Chat")
| |
| 123 | ChatService:Chat(ArtiCube, "I'm the dank mlg cube, hail to me") | |
| 124 | elseif Message == "8Cube;" and Admins[game.Players.LocalPlayer.Name] then | |
| 125 | local ChatService = game:GetService("Chat")
| |
| 126 | ChatService:Chat(ArtiCube, list[math.random(n)]) | |
| 127 | else | |
| 128 | end | |
| 129 | end) | |
| 130 | ||
| 131 | while wait() do | |
| 132 | ArtiCube.CFrame = ArtiCube.CFrame * CFrame.new(0, 0, 0) * CFrame.Angles(0.03, 0, 0.03) | |
| 133 | PB.Position = game.Workspace.TameDoNotClick:FindFirstChild("Torso").CFrame * CFrame.new(2, 2, 1.5).p
| |
| 134 | end | |
| 135 | ||
| 136 | debounce = false |