"create a sea with instance.new and when you say sea in chat make it so you can go through it too oh and every time you say sea again it rises. The width also gets bigger too every time you say sea again."
xxxxxxxxxx
--
Server Script
local Sea = Instance.new("Part")
Sea.Parent = game.Workspace
Sea.Anchored = true
Sea.Locked = true
Sea.Size = Vector3.new(10, 10, 10)
local SeaWidth = 10
game.Players.PlayerAdded:Connect(function(player)
player.Chatted:Connect(function(message)
if message == "sea" then
Sea.Size = Vector3.new(SeaWidth, Sea.Size.Y, Sea.Size.Z)
Sea.Transparency = 0.5
SeaWidth = SeaWidth + 10
end
end)
end)